mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-14 11:17:52 +08:00
11 lines
325 B
Go
11 lines
325 B
Go
// Package daemon implements a service for mediating access to the data store,
|
|
// and its client.
|
|
//
|
|
// Most RPCs exposed by the service correspond to the methods of Store in the
|
|
// store package and are not documented here.
|
|
package daemon
|
|
|
|
import "github.com/elves/elvish/pkg/util"
|
|
|
|
var logger = util.GetLogger("[daemon] ")
|