1package directories
2
3import (
4	"fmt"
5
6	"github.com/tombuildsstuff/giovanni/version"
7)
8
9// APIVersion is the version of the API used for all Storage API Operations
10const APIVersion = "2017-07-29"
11
12func UserAgent() string {
13	return fmt.Sprintf("tombuildsstuff/giovanni/%s storage/%s", version.Number, APIVersion)
14}
15