Added main prefix

This commit is contained in:
2024-07-30 20:02:55 +02:00
parent 323952f4bc
commit 0c1b57b4e4
9 changed files with 34 additions and 20 deletions

View File

@ -13,9 +13,9 @@ func (s *Scanner) queue(files ...string) {
}
if stat.IsDir() {
s.queueDirectory(file, "")
s.queueDirectory(file, "main")
} else {
s.queueFile(file, "")
s.queueFile(file, "main")
}
}
}