13
pkg/app/app.go
Normal file
13
pkg/app/app.go
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
package app
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
func New() *App {
|
||||||
|
return &App{}
|
||||||
|
}
|
||||||
|
|
||||||
|
type App struct{}
|
||||||
|
|
||||||
|
func (a *App) Execute() {
|
||||||
|
fmt.Println("Hello World")
|
||||||
|
}
|
Reference in New Issue
Block a user