mirror of
https://github.com/status-im/status-go.git
synced 2025-01-23 21:19:48 +00:00
12 lines
114 B
Go
12 lines
114 B
Go
|
package log
|
||
|
|
||
|
type Handler interface {
|
||
|
Handle(Record)
|
||
|
}
|
||
|
|
||
|
type Record struct {
|
||
|
Msg
|
||
|
Level Level
|
||
|
Names []string
|
||
|
}
|