Ocean/Handlers/Variables.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

13 lines
256 B
Go

package Handlers
import (
LM "github.com/SommerEngineering/Ocean/Log/Meta"
"net/http"
)
var (
senderName LM.Sender = `System::Handlers`
muxPublic *http.ServeMux = http.NewServeMux()
muxAdmin *http.ServeMux = http.NewServeMux()
)