diff options
author | Valentin Popov <valentin@popov.link> | 2025-02-02 04:21:26 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2025-02-02 04:23:04 +0300 |
commit | 421b81f6fcdee15a4a3642081748ca679bcee8a5 (patch) | |
tree | a110004cacd859ff1b97cd16aeb8af03f17f7ccd | |
parent | b43cb957c71a2699112f54e3d37113410c4bfce0 (diff) | |
download | devcli-421b81f6fcdee15a4a3642081748ca679bcee8a5.tar.xz devcli-421b81f6fcdee15a4a3642081748ca679bcee8a5.zip |
Initial Go project
-rw-r--r-- | cmd/app/main.go | 7 | ||||
-rw-r--r-- | go.mod | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/cmd/app/main.go b/cmd/app/main.go new file mode 100644 index 0000000..a3dd973 --- /dev/null +++ b/cmd/app/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, World!") +} @@ -0,0 +1,3 @@ +module github.com/valentineus/devcli + +go 1.23.4 |