libhttp/module.go

7 lines
86 B
Go

package libhttp
type Module[S Server] interface {
Name() string
Route(s S) error
}