feat(smalltrip,multiplexer): Multiplexer interface constructor, alias to http.NewServeMux

This commit is contained in:
Guz
2025-08-08 19:17:56 -03:00
parent 226077cedd
commit ec99bf0d02

View File

@@ -23,3 +23,7 @@ type Multiplexer interface {
Handler(r *http.Request) (h http.Handler, pattern string)
http.Handler
}
func New() Multiplexer {
return http.NewServeMux()
}