Ocean/Main.go

14 lines
347 B
Go
Raw Normal View History

package main
import (
"github.com/SommerEngineering/Ocean/Log"
LM "github.com/SommerEngineering/Ocean/Log/Meta"
"github.com/SommerEngineering/Ocean/System"
)
func main() {
2014-11-07 16:32:02 +00:00
Log.LogShort(senderName, LM.CategoryAPP, LM.LevelINFO, LM.MessageNameSTARTUP, `Ocean is starting.`)
System.InitHandlers()
System.StartAndBlockForever()
}