terraform/vendor/github.com/tombuildsstuff/giovanni/storage/2018-11-09/blob/containers/version.go

15 lines
312 B
Go

package containers
import (
"fmt"
"github.com/tombuildsstuff/giovanni/version"
)
// APIVersion is the version of the API used for all Storage API Operations
const APIVersion = "2018-11-09"
func UserAgent() string {
return fmt.Sprintf("tombuildsstuff/giovanni/%s storage/%s", version.Number, APIVersion)
}