mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +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,
|
|
}
|
|
}
|