image-storage/internal/app/app.go

14 lines
173 B
Go
Raw Normal View History

2025-10-20 18:23:53 +03:00
package app
import log "github.com/sirupsen/logrus"
type App struct{}
func NewApp() *App {
return &App{}
}
func (app *App) Start() {
log.Info("Application started")
}