mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +02:00
c33158c13c
- Fix #2334 - Parsing of iptables chains, contributing to progress for #1856
14 lines
216 B
Go
14 lines
216 B
Go
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)
|
|
}
|