Ocean/Handlers/GetMuxes.go
Thorsten c1e8ca4b07 Admin Interface & Handlers
* In Progress, Not Done Yet
+ Added Handlers to cover public and admin handlers
+ Added WebServer
+ InitHandlers used the new class
2014-11-06 17:49:04 +01:00

16 lines
196 B
Go

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