2015-06-21 03:47:44 +00:00
|
|
|
package service
|
|
|
|
|
2016-01-10 08:57:52 +00:00
|
|
|
// Server represents a server for a remote client
|
|
|
|
// to connect to.
|
2015-06-21 03:47:44 +00:00
|
|
|
type Server interface {
|
|
|
|
Run() error
|
2018-10-09 06:09:01 +00:00
|
|
|
Stop() error
|
2015-06-21 03:47:44 +00:00
|
|
|
}
|