Files
2022-07-21 19:10:46 +02:00

8 lines
81 B
Go

package server
// Server
type Server interface {
Start() error
Stop() error
}