initial commit

This commit is contained in:
2026-08-31 22:25:00 +01:00
commit d13ee5cf13
7 changed files with 216 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# Sqan
A simple package to help scan files in a directory.
```go
s := NewScanner("my/dir").
WithExtensions("md", "txt").
WithIgnorePatterns("**/.private/**")
for file := range s.Scan() {
fmt.Println(file)
}
```