initial commit

This commit is contained in:
2025-10-08 23:17:23 +02:00
commit a7c436fe4c
9 changed files with 165 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
package app
type App struct {
}
func NewApp(environment string) *App {
startRotativeLogger(environment)
return &App{}
}