stub state

This commit is contained in:
Bel LaPointe
2021-02-21 23:22:49 -06:00
parent 7216ac1620
commit 3954d3cc6a
6 changed files with 125 additions and 0 deletions

9
server/server.go Normal file
View File

@@ -0,0 +1,9 @@
package server
import "errors"
type Server struct{}
func New() (*Server, error) {
return &Server{}, errors.New("not impl")
}