Files
gluetun/internal/openvpn/logger.go

13 lines
144 B
Go
Raw Normal View History

package openvpn
type Logger interface {
Debug(s string)
Infoer
Warn(s string)
Error(s string)
}
type Infoer interface {
Info(s string)
}