This commit is contained in:
nquidox 2025-10-20 18:23:53 +03:00
commit a72002540d
9 changed files with 133 additions and 0 deletions

14
cmd/main.go Normal file
View file

@ -0,0 +1,14 @@
package main
import (
"imageStorage/config"
"imageStorage/internal/app"
)
func main() {
c := config.NewConfig()
config.LogSetup(c.App.LogLevel)
a := app.NewApp()
a.Start()
}