7 lines
130 B
Go
7 lines
130 B
Go
|
package simplelog
|
||
|
|
||
|
// Handler defines the interface for different log outputs.
|
||
|
type Handler interface {
|
||
|
Log(event Event) error
|
||
|
}
|