Files
gluetun/internal/netlink/interfaces.go

10 lines
168 B
Go
Raw Normal View History

2022-12-02 11:26:52 +00:00
package netlink
2022-12-14 11:50:36 +00:00
import "github.com/qdm12/log"
2022-12-02 11:26:52 +00:00
type DebugLogger interface {
Debug(message string)
2022-12-02 11:26:52 +00:00
Debugf(format string, args ...any)
2022-12-14 11:50:36 +00:00
Patch(options ...log.Option)
2022-12-02 11:26:52 +00:00
}