mirror of
https://github.com/qdm12/gluetun.git
synced 2025-12-10 10:45:38 -06:00
11 lines
191 B
Go
11 lines
191 B
Go
package routing
|
|
|
|
//go:generate mockgen -destination=logger_mock_test.go -package routing . Logger
|
|
|
|
type Logger interface {
|
|
Debug(s string)
|
|
Info(s string)
|
|
Warn(s string)
|
|
Error(s string)
|
|
}
|