1
0
mirror of https://github.com/beego/bee.git synced 2025-06-26 14:00:19 +00:00
Files
bee/vendor/github.com/derekparker/delve/service/server.go
2018-10-13 21:45:53 +08: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
}