mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-25 12:27:43 +08:00
License: MIT Signed-off-by: Brian Tiger Chow <brian@perfmode.com> # TYPES # feat # fix # docs # style (formatting, missing semi colons, etc; no code change): # refactor # test (adding missing tests, refactoring tests; no production code change) # chore (updating grunt tasks etc; no production code change)
7 lines
160 B
Go
7 lines
160 B
Go
package eventlog
|
|
|
|
// Loggable describes objects that can be marshalled into Metadata for logging
|
|
type Loggable interface {
|
|
Loggable() map[string]interface{}
|
|
}
|