package app import log "github.com/sirupsen/logrus" type App struct{} func NewApp() *App { return &App{} } func (app *App) Start() { log.Info("Application started") }