1
0
mirror of https://github.com/beego/bee.git synced 2024-11-15 08:30:54 +00:00
bee/vendor/github.com/go-delve/delve/service/server.go
2019-04-15 16:43:01 +02: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
}