initial
This commit is contained in:
commit
a72002540d
9 changed files with 133 additions and 0 deletions
13
internal/app/app.go
Normal file
13
internal/app/app.go
Normal 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")
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue