Ocean/Main.go
Thorsten d95a8da77e Typo
Typo change
2014-11-07 17:32:02 +01:00

14 lines
347 B
Go

package main
import (
"github.com/SommerEngineering/Ocean/Log"
LM "github.com/SommerEngineering/Ocean/Log/Meta"
"github.com/SommerEngineering/Ocean/System"
)
func main() {
Log.LogShort(senderName, LM.CategoryAPP, LM.LevelINFO, LM.MessageNameSTARTUP, `Ocean is starting.`)
System.InitHandlers()
System.StartAndBlockForever()
}