aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralex <[email protected]>2026-06-25 17:47:56 +0200
committeralex <[email protected]>2026-06-25 17:47:56 +0200
commite9a9d8694eda14a75a9af3781deded16c6f41cc0 (patch)
tree7fce9c64d4911fdc5a7babfc8cce44c48f30b32f
downloadredis-clone-e9a9d8694eda14a75a9af3781deded16c6f41cc0.tar.xz
redis-clone-e9a9d8694eda14a75a9af3781deded16c6f41cc0.zip
init
-rw-r--r--.gitignore0
-rw-r--r--go.mod3
-rw-r--r--main.go7
3 files changed, 10 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/.gitignore
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..1a44fdd
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,3 @@
+module redisClone
+
+go 1.26.4
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..b7d2a32
--- /dev/null
+++ b/main.go
@@ -0,0 +1,7 @@
+package main
+
+import "fmt"
+
+func main() {
+ fmt.Println("Hello, World!")
+}