Files
LearnGO/go/pkg/mod/github.com/go-delve/delve@v1.23.0/service/server.go
T
2024-09-19 21:38:24 -04: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
}