delve/service/server.go
chainhelen ea54a6b2af cmd,service: remove temporary def of Server interface in func
Use the defination of Server interface in service package, instead of
temporary in func.
2018-10-09 07:56:48 -07:00

9 lines
138 B
Go

package service
// Server represents a server for a remote client
// to connect to.
type Server interface {
Run() error
Stop() error
}