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