github.com/Benchkram/bob@v0.0.0-20220321080157-7c8f3876e225/bob/clone_schema.go (about) 1 package bob 2 3 type CloneSchema string 4 5 func (cs *CloneSchema) String() string { 6 return string(*cs) 7 } 8 9 const ( 10 SSH CloneSchema = "ssh" 11 HTTPS CloneSchema = "https" 12 )