Files
gluetun/internal/firewall/interfaces.go
Quentin McGaw c33158c13c fix(firewall): delete chain rules by line number (#2411)
- Fix #2334
- Parsing of iptables chains, contributing to progress for #1856
2024-09-29 17:53:04 +00:00

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