feat: add basic workings

This commit is contained in:
2026-04-29 23:38:43 +02:00
parent da3dee9ae7
commit 76c893ae7e
14 changed files with 167 additions and 112 deletions
+4
View File
@@ -35,6 +35,10 @@ func scanFS(env bootstrap.Environment) (map[string]struct{}, error) {
resp := make(map[string]struct{})
for _, f := range fsFiles {
if f.IsDir() {
continue
}
full := filepath.Join(env.ContentDirectory, f.Name())
resp[full] = struct{}{}
}