package server
import "local/router"
type Server struct {
*router.Router
}
func New() (*Server, error) {
return &Server{
Router: router.New(),
}, nil