summaryrefslogtreecommitdiff
path: root/vendor/github.com/superseriousbusiness/activity/pub/version.go
blob: 23b958ce57b381708e7014d9ee093116a47cf6fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package pub

import (
	"fmt"
)

const (
	// Version string, used in the User-Agent
	version = "v1.0.0"
)

// goFedUserAgent returns the user agent string for the go-fed library.
func goFedUserAgent() string {
	return fmt.Sprintf("(go-fed/activity %s)", version)
}