shithub: furgit

ref: 65a6439638a18e4317e144a0117db7604a2f2940
dir: /receivepack/capabilities_defaults.go/

View raw version
package receivepack

import (
	"crypto/rand"
)

func defaultAgent() string {
	return "furgit"
}

func defaultSessionID() string {
	return "furgit-" + rand.Text()
}

func defaultPushCertNonce() string {
	return "furgit-" + rand.Text()
}