Compare commits
2 Commits
72fb83a522
...
26e0fef0c6
Author | SHA1 | Date | |
---|---|---|---|
26e0fef0c6 | |||
9c91a35611 |
3
.gitignore
vendored
3
.gitignore
vendored
@ -25,3 +25,6 @@ go.work.sum
|
|||||||
# env file
|
# env file
|
||||||
.env
|
.env
|
||||||
|
|
||||||
|
|
||||||
|
.idea
|
||||||
|
|
||||||
|
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