create_map test ready

This commit is contained in:
2026-05-21 22:34:58 -06:00
parent 80fa7f8392
commit d03908eb8e
3 changed files with 124 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
package repomaint
func (r *RepoSync) createMap(repo string) (map[string]string, error) {
// create slice all filenames in repo
// open db file
// for file in slice
// find in db
// insert into map as map[packagename] = filename
// return map
return nil, nil
}