repos / git-pr

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

commit
117e1ea
parent
2ee7b51
author
Eric Bower
date
2024-06-24 23:12:54 -0400 EDT
chore: cleanup
1 files changed,  +0, -5
M pr.go
M pr.go
+0, -5
 1@@ -27,7 +27,6 @@ type GitPatchRequest interface {
 2 	GetUsers() ([]*User, error)
 3 	GetUserByID(userID int64) (*User, error)
 4 	GetUserByPubkey(pubkey string) (*User, error)
 5-	CreateUser(user *User) (*User, error)
 6 	UpsertUser(user *User) (*User, error)
 7 	GetRepos() ([]*Repo, error)
 8 	GetReposWithLatestPr() ([]RepoWithLatestPr, error)
 9@@ -67,10 +66,6 @@ func (pr PrCmd) GetUserByPubkey(pubkey string) (*User, error) {
10 	return nil, nil
11 }
12 
13-func (pr PrCmd) CreateUser(user *User) (*User, error) {
14-	return nil, nil
15-}
16-
17 func (pr PrCmd) UpsertUser(user *User) (*User, error) {
18 	return nil, nil
19 }