Implement initial detection and data structures for suspicious artifacts

This commit is contained in:
Evan Hosinski
2025-10-10 15:35:17 -04:00
commit 10b1bb7ed6
26 changed files with 2382 additions and 0 deletions
@@ -0,0 +1,12 @@
package directory
import "testing"
func TestDetect(t *testing.T) {
directories := Detect()
for _, dir := range directories {
t.Logf("-----")
t.Logf("Directory: %s", dir)
t.Logf("-----")
}
}