shithub: furgit

ref: 8f577284f47f699855dcb3ceda21aa9d8be77c2f
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()
}