11 lines
147 B
Go
11 lines
147 B
Go
package constants
|
|
|
|
import (
|
|
"github.com/qdm12/gluetun/internal/models"
|
|
)
|
|
|
|
const (
|
|
TUN models.VPNDevice = "tun0"
|
|
TAP models.VPNDevice = "tap0"
|
|
)
|