doc.go 521 B

1234567891011121314151617181920212223
  1. /*
  2. Package apiversions provides information and interaction with the different
  3. API versions for the OpenStack Neutron service. This functionality is not
  4. restricted to this particular version.
  5. Example to List API Versions
  6. allPages, err := apiversions.ListVersions(networkingClient).AllPages()
  7. if err != nil {
  8. panic(err)
  9. }
  10. allVersions, err := apiversions.ExtractAPIVersions(allPages)
  11. if err != nil {
  12. panic(err)
  13. }
  14. for _, version := range allVersions {
  15. fmt.Printf("%+v\n", version)
  16. }
  17. */
  18. package apiversions