go_conf/schema.go

18 lines
389 B
Go
Raw Normal View History

package main
2020-09-12 01:25:44 -04:00
// The usage of this depends on the successful resolution of https://github.com/lestrrat-go/libxml2/issues/67.
import (
"errors"
"io/ioutil"
"net/http"
"strings"
2020-09-12 01:25:44 -04:00
lxml "github.com/lestrrat-go/libxml2"
lxmlp "github.com/lestrrat-go/libxml2/parser"
lxmlt "github.com/lestrrat-go/libxml2/types"
"github.com/lestrrat-go/libxml2/xsd"
2020-09-12 01:25:44 -04:00
rpaths "r00t2.io/sysutils/paths"
2020-09-12 01:25:44 -04:00
)