This commit is contained in:
pavel 2026-05-14 19:21:15 +02:00
commit b38c39030b
22 changed files with 1925 additions and 0 deletions

13
main.go Normal file
View file

@ -0,0 +1,13 @@
package main
import (
"log"
"box/internal/app"
)
func main() {
if err := app.Run(); err != nil {
log.Fatal(err)
}
}