mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-05 04:41:20 +00:00
1832c0a02b
Currently we expose libvirt Go packages at libvirt.org/libvirt-go libvirt.org/libvirt-go-xml These packages have not supported Go modules historically and when we tried to introduce modules, we hit the problem that we're not using semver for versioning. The only way around this is to introduce new packages under a different namespace, that will have the exact same code, but be tagged with a different version numbering scheme. This change proposes: libvirt.org/go/libvirt libvirt.org/go/libvirtxml Note the hyphen is removed so that the import basename matches the Go package name. Reviewed-by: Andrea Bolognani <abologna@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
17 lines
765 B
ReStructuredText
17 lines
765 B
ReStructuredText
============================================
|
|
Libvirt Go XML parsing API (with Go modules)
|
|
============================================
|
|
|
|
The `Go <https://golang.org/>`__ package ``libvirt.org/go/libvirtxml`` provides
|
|
annotated Go struct definitions for parsing (and formatting) XML documents used
|
|
with libvirt APIs.
|
|
|
|
This package replaces the obsolete `libvirt.org/libvirt-go-xml
|
|
<../libvirt-go-xml.html>`__ package in order to switch to using `semver
|
|
<https://semver.org/>`__ and `Go modules <https://golang.org/ref/mod>`__.
|
|
Aside from the changed import path and versioning scheme, the API is fully
|
|
compatible with the original package.
|
|
|
|
For details of Go specific behaviour consult the
|
|
`Go package documentation <https://pkg.go.dev/libvirt.org/go/libvirtxml>`__.
|