elvish/pkg/daemon/daemon.go
2019-12-23 20:00:59 +00:00

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] ")