remove unused code

This commit is contained in:
Lunny Xiao
2026-01-02 18:55:32 -08:00
parent 68bb75168a
commit 500fbe2c48
-5
View File
@@ -126,8 +126,3 @@ func CreateRepoFile(ctx context.Context, repo Repository, relativeFilePath strin
}
return os.Create(absoluteFilePath)
}
func MkRepoDir(ctx context.Context, repo Repository, relativeDirPath string) error {
absoluteDirPath := filepath.Join(repoPath(repo), relativeDirPath)
return os.MkdirAll(absoluteDirPath, os.ModePerm)
}