15 lines
205 B
Go
15 lines
205 B
Go
package main
|
|
|
|
import (
|
|
"regexp"
|
|
)
|
|
|
|
const (
|
|
XSIVal = "http://www.w3.org/2001/XMLSchema-instance"
|
|
DefSchemaNS = "xsi"
|
|
)
|
|
|
|
var (
|
|
uriRe = regexp.MustCompile(`^(?P<type>file|https?)://(?P<path>.+)$`)
|
|
)
|