Files
elmprodvpn/selective-vpn-api/app/autoloop_helpers.go

13 lines
184 B
Go

package app
import (
"regexp"
)
type autoloopLocationSpec struct {
Primary string
ISO string
}
var autoloopEmailRe = regexp.MustCompile(`[A-Za-z0-9._%+\-]+@[A-Za-z0-9.\-]+`)