package server
import "errors"
type Server struct{}
func New() (*Server, error) {
return &Server{}, errors.New("not impl")
}