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

9 lines
138 B
Go
Raw Normal View History

2017-03-19 22:45:54 +00:00
package service
// Server represents a server for a remote client
// to connect to.
type Server interface {
Run() error
2018-10-13 13:45:53 +00:00
Stop() error
2017-03-19 22:45:54 +00:00
}