Paul Lecuq
36c5d6f2ed
- web service with json support - web page - cron service to update database infos
9 lines
152 B
Go
9 lines
152 B
Go
package logger
|
|
|
|
import "io"
|
|
|
|
// Outable interface for loggers that allow setting the output writer
|
|
type Outable interface {
|
|
SetOutput(out io.Writer)
|
|
}
|