File: version.go

package info (click to toggle)
golang-github-tombuildsstuff-giovanni 0.20.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 15,908 kB
  • sloc: makefile: 3
file content (14 lines) | stat: -rw-r--r-- 312 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package containers

import (
	"fmt"

	"github.com/tombuildsstuff/giovanni/version"
)

// APIVersion is the version of the API used for all Storage API Operations
const APIVersion = "2017-07-29"

func UserAgent() string {
	return fmt.Sprintf("tombuildsstuff/giovanni/%s storage/%s", version.Number, APIVersion)
}