7 lines
102 B
Go
7 lines
102 B
Go
|
package flog
|
||
|
|
||
|
|
||
|
type Router interface {
|
||
|
Route(message string, context map[string]interface{}) error
|
||
|
}
|