Files
gluetun/internal/tun/tun.go

8 lines
67 B
Go
Raw Normal View History

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