mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-06 20:10:11 +02:00
12 lines
163 B
Go
12 lines
163 B
Go
package netlink
|
|
|
|
type NetLink struct {
|
|
debugLogger DebugLogger
|
|
}
|
|
|
|
func New(debugLogger DebugLogger) *NetLink {
|
|
return &NetLink{
|
|
debugLogger: debugLogger,
|
|
}
|
|
}
|