Initial COmmit

This commit is contained in:
2026-03-15 16:42:43 +02:00
commit 42e2083ece
12 changed files with 1409 additions and 0 deletions

15
cmd/scrappr/main.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import (
"os"
"scrappr/internal/app"
"scrappr/internal/logx"
)
func main() {
if err := app.Run(); err != nil {
logx.Eventf("error", "fatal: %v", err)
os.Exit(1)
}
}