diff options
| author | alex <[email protected]> | 2026-06-25 17:47:56 +0200 |
|---|---|---|
| committer | alex <[email protected]> | 2026-06-25 17:47:56 +0200 |
| commit | e9a9d8694eda14a75a9af3781deded16c6f41cc0 (patch) | |
| tree | 7fce9c64d4911fdc5a7babfc8cce44c48f30b32f | |
| download | redis-clone-e9a9d8694eda14a75a9af3781deded16c6f41cc0.tar.xz redis-clone-e9a9d8694eda14a75a9af3781deded16c6f41cc0.zip | |
init
| -rw-r--r-- | .gitignore | 0 | ||||
| -rw-r--r-- | go.mod | 3 | ||||
| -rw-r--r-- | main.go | 7 |
3 files changed, 10 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +module redisClone + +go 1.26.4 @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, World!") +} |
