mirror of
https://github.com/qdm12/gluetun.git
synced 2025-12-11 04:38:54 -06:00
13 lines
144 B
Go
13 lines
144 B
Go
package openvpn
|
|
|
|
type Logger interface {
|
|
Debug(s string)
|
|
Infoer
|
|
Warn(s string)
|
|
Error(s string)
|
|
}
|
|
|
|
type Infoer interface {
|
|
Info(s string)
|
|
}
|