ghproxy/auth/blacklist.go
WJQSERVER 57f67278a3 test
2024-10-06 00:22:42 +08:00

10 lines
197 B
Go

package auth
func CheckBlacklist(fullrepo string) bool {
if fullrepo == "test/test1" {
logw("%s in blacklist", fullrepo)
return true
}
logw("%s not in blacklist", fullrepo)
return false
}