Ocean/Handlers/Variables.go

13 lines
391 B
Go
Raw Normal View History

package Handlers
import (
LM "github.com/SommerEngineering/Ocean/Log/Meta"
"net/http"
)
var (
2015-06-17 15:44:52 +00:00
senderName LM.Sender = `System::Handlers` // This is the name for logging event from this package
muxPublic *http.ServeMux = http.NewServeMux() // The muxer for the public web server
muxAdmin *http.ServeMux = http.NewServeMux() // The muxer for the private web server
)