8 lines
93 B
Go
8 lines
93 B
Go
|
package log
|
||
|
|
||
|
type entry struct {
|
||
|
loggables []Loggable
|
||
|
system string
|
||
|
event string
|
||
|
}
|