2014-11-06 16:49:04 +00:00
|
|
|
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
|
2014-11-06 16:49:04 +00:00
|
|
|
)
|