13 lines
184 B
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.\-]+`)
|