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

13
internal/app/app.go Normal file
View file

@ -0,0 +1,13 @@
package app
import log "github.com/sirupsen/logrus"
type App struct{}
func NewApp() *App {
return &App{}
}
func (app *App) Start() {
log.Info("Application started")
}