package event type Level int const ( LevelInfo Level = iota LevelWarning LevelError ) type Event struct { Level Level Message string Source string }