delve/service/server.go

9 lines
138 B
Go
Raw Normal View History

2015-06-21 03:47:44 +00:00
package service
2016-01-10 08:57:52 +00:00
// Server represents a server for a remote client
// to connect to.
2015-06-21 03:47:44 +00:00
type Server interface {
Run() error
Stop() error
2015-06-21 03:47:44 +00:00
}