8 lines
83 B
Go
8 lines
83 B
Go
package http
|
|
|
|
type Router struct{}
|
|
|
|
func NewRouter() *Router {
|
|
return &Router{}
|
|
}
|