stub state
This commit is contained in:
9
server/server.go
Normal file
9
server/server.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package server
|
||||
|
||||
import "errors"
|
||||
|
||||
type Server struct{}
|
||||
|
||||
func New() (*Server, error) {
|
||||
return &Server{}, errors.New("not impl")
|
||||
}
|
||||
Reference in New Issue
Block a user