This commit is contained in:
2026-04-13 08:14:09 +03:00
commit 0449337ae7
39 changed files with 2726 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
package main
import (
"log/slog"
"os"
"github.com/olezhek28/di-demo/internal/app"
)
func main() {
a := app.New()
if err := a.Run(); err != nil {
slog.Error("ошибка приложения", "err", err)
os.Exit(1)
}
}