* Vendors packages * Adds a Makefile that uses docker to build a static binary against musl using alpine linux. Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
13 lines
536 B
Go
13 lines
536 B
Go
// Package api contains Go structs for all LXD API objects
|
|
//
|
|
// # Overview
|
|
//
|
|
// This package has Go structs for every API object, all the various
|
|
// structs are named after the object they represent and some variations of
|
|
// those structs exist for initial object creation, object update and
|
|
// object retrieval.
|
|
//
|
|
// A few convenience functions are also tied to those structs which let
|
|
// you convert between the various strucs for a given object and also query
|
|
// some of the more complex metadata that LXD can export.
|
|
package api
|