dm
/
vain
forked from sm/vain
1
0
Fork 0
vain/server.go

16 lines
196 B
Go
Raw Normal View History

2016-02-08 00:15:22 -08:00
package ysv
import "net/http"
type Server struct {
}
func NewServer(sm *http.ServeMux) *Server {
s := &Server{}
addRoutes(sm, s)
return s
}
func addRoutes(sm *http.ServeMux, s *Server) {
}