mirror of
https://github.com/status-im/status-go.git
synced 2025-02-07 12:25:20 +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
|
||
|
}
|