Skip to content

Commit ffb30ab

Browse files
authored
feat: setup proj structure and helloworld (#1)
1 parent 90d63fb commit ffb30ab

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

cmd/taskwarden/main.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package main
2+
3+
import (
4+
"fmt"
5+
)
6+
7+
func main() {
8+
fmt.Println("Welcome to TaskWarden")
9+
}

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/danny-molnar/taskwarden
2+
3+
go 1.23.0

0 commit comments

Comments
 (0)