Ocean/Handlers/GetMuxes.go

16 lines
196 B
Go
Raw Normal View History

package Handlers
import (
"net/http"
)
func GetPublicMux() (mux *http.ServeMux) {
mux = muxPublic
return
}
func GetAdminMux() (mux *http.ServeMux) {
mux = muxAdmin
return
}