2014-04-26 09:18:56 +00:00
|
|
|
package Tools
|
|
|
|
|
2014-10-19 17:19:11 +00:00
|
|
|
import (
|
|
|
|
LM "github.com/SommerEngineering/Ocean/Log/Meta"
|
|
|
|
)
|
2014-04-26 09:18:56 +00:00
|
|
|
|
|
|
|
var (
|
2015-06-17 15:44:52 +00:00
|
|
|
senderName LM.Sender = `System::Tools` // This is the name for logging event from this package
|
|
|
|
hostname string = `unknown` // The local server's hostname
|
|
|
|
localIPAddressAndPort string = `127.0.0.1:60000` // The local server's IP address and port
|
|
|
|
ipAddresses []string = nil // All public IP addresses of this server
|
|
|
|
internalCommPassword string = `` // The communication password
|
|
|
|
defaultLanguage string = `en` // The default language for I18N
|
2014-04-26 09:18:56 +00:00
|
|
|
)
|