M3O SDK Concept

This commit is contained in:
Ben Toogood
2020-11-25 16:06:44 +00:00
parent 7818a050c2
commit 5fa6c1244f
21 changed files with 1293 additions and 524 deletions

12
server/server.go Normal file
View File

@@ -0,0 +1,12 @@
package server
// RegisterHandler to be serverd by the grpc server upon Run()
func RegisterHandler(h interface{}) {
}
// Run the server. This will start a grpc server and register to service discovery
func Run() {
c := make(chan bool)
<-c
}