repos / git-pr

a self-hosted git collaboration server
git clone https://github.com/picosh/git-pr.git

commit
59749e8
parent
751f871
author
Eric Bower
date
2024-05-02 09:03:12 -0400 EDT
changes
1 files changed,  +2, -4
M cfg.go
M cfg.go
+2, -4
 1@@ -1,13 +1,11 @@
 2 package git
 3 
 4 type GitCfg struct {
 5-	DataPath     string
 6-	AdminPubkeys []string
 7+	DataPath string
 8 }
 9 
10 func NewGitCfg() *GitCfg {
11 	return &GitCfg{
12-		DataPath:     "ssh_data",
13-		AdminPubkeys: []string{},
14+		DataPath: "ssh_data",
15 	}
16 }