elvish/daemon/daemon.go
2018-01-01 15:12:34 +00:00

11 lines
321 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/util"
var logger = util.GetLogger("[daemon] ")