go_conf/const.go

15 lines
205 B
Go
Raw Permalink Normal View History

package main
import (
"regexp"
)
2020-09-12 01:25:44 -04:00
const (
XSIVal = "http://www.w3.org/2001/XMLSchema-instance"
2020-09-12 01:25:44 -04:00
DefSchemaNS = "xsi"
)
var (
uriRe = regexp.MustCompile(`^(?P<type>file|https?)://(?P<path>.+)$`)
)