9 lines
145 B
Go
9 lines
145 B
Go
package netlink
|
|
|
|
import "github.com/qdm12/log"
|
|
|
|
type DebugLogger interface {
|
|
Debugf(format string, args ...any)
|
|
Patch(options ...log.Option)
|
|
}
|