Files
gluetun/internal/tun/tun.go
2023-05-29 09:36:29 +00:00

8 lines
67 B
Go

package tun
type Tun struct{}
func New() *Tun {
return &Tun{}
}