Files
gluetun/internal/firewall/interfaces.go

14 lines
216 B
Go
Raw Normal View History

package firewall
import "github.com/qdm12/golibs/command"
type Runner interface {
Run(cmd command.ExecCmd) (output string, err error)
}
type Logger interface {
Debug(s string)
Info(s string)
Error(s string)
}