package main import ( "regexp" ) const ( XSIVal = "http://www.w3.org/2001/XMLSchema-instance" DefSchemaNS = "xsi" ) var ( uriRe = regexp.MustCompile(`^(?Pfile|https?)://(?P.+)$`) )