* In Progress, Not Done Yet + Added Handlers to cover public and admin handlers + Added WebServer + InitHandlers used the new class
16 lines
196 B
Go
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
|
|
}
|