aboutsummaryrefslogtreecommitdiff
path: root/ssh_utils.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-18 20:12:32 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-18 20:12:32 +0800
commitd1a1358c447175bdfd2c44f0baf2f53201ed096a (patch)
tree01c05bcab641654b21b7ff9a09ebf03df49aaa03 /ssh_utils.go
parentRemove underscores from Go code, pt 1 (diff)
downloadforge-d1a1358c447175bdfd2c44f0baf2f53201ed096a.tar.gz
forge-d1a1358c447175bdfd2c44f0baf2f53201ed096a.tar.zst
forge-d1a1358c447175bdfd2c44f0baf2f53201ed096a.zip
gofumpt
Diffstat (limited to '')
-rw-r--r--ssh_utils.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssh_utils.go b/ssh_utils.go
index d40facf..ac0781e 100644
--- a/ssh_utils.go
+++ b/ssh_utils.go
@@ -16,7 +16,7 @@ import (
var err_ssh_illegal_endpoint = errors.New("illegal endpoint during SSH access")
-func get_repo_path_perms_from_ssh_path_pubkey(ctx context.Context, ssh_path string, ssh_pubkey string) (group_path []string, repo_name string, repo_id int, repo_path string, direct_access bool, contrib_requirements string, user_type string, user_id int, err error) {
+func get_repo_path_perms_from_ssh_path_pubkey(ctx context.Context, ssh_path, ssh_pubkey string) (group_path []string, repo_name string, repo_id int, repo_path string, direct_access bool, contrib_requirements, user_type string, user_id int, err error) {
var segments []string
var separator_index int
var module_type, module_name string