Files
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
}