2021-09-23 17:06:09 +00:00

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)
}