nowhere near usable but setting aside for rainy day

This commit is contained in:
2021-07-04 04:06:05 -04:00
parent 5e9399497b
commit 9d59974e5a
6 changed files with 178 additions and 127 deletions

View File

@@ -1,6 +1,14 @@
package conf
package main
import (
"regexp"
)
const (
XSIVal = "http://www.w3.org/2001/XMLSchema-instance"
XSIVal = "http://www.w3.org/2001/XMLSchema-instance"
DefSchemaNS = "xsi"
)
var (
uriRe = regexp.MustCompile(`^(?P<type>file|https?)://(?P<path>.+)$`)
)