Hi
I trying to validated the XML with XSD available and for the same I have found the github.com/krolaw/xsd pakage.
import (
// The xsd package does not read in documents.
// Any package that exposes the document’s libxml2’s xmlDocPtr will do.
// This one seemed rather straight forward, but others should be fine.
“github.com/jbussdieker/golibxml”
“github.com/krolaw/xsd”
"fmt"
"unsafe"
)
In the above Import block two pakges( 1 . "github.com/jbussdieker/golibxm and 2 . “github.com/krolaw/xsd”) are not getting imported.
Could any one help me to resolve this problem ?
Thanks
mr