Introduce JSON-RPC service

This commit is contained in:
Derek Parker
2015-06-20 22:47:44 -05:00
parent 5642e0a106
commit 687dc4172d
12 changed files with 574 additions and 45 deletions

6
service/server.go Normal file
View File

@ -0,0 +1,6 @@
package service
type Server interface {
Run() error
Stop(bool) error
}