feat: Add input server (#37)

## Description

**What issue are you solving (or what feature are you adding) and how
are you doing it?**

Doing some ground work for the input server, here I am initializing a go
project. That's all
This commit is contained in:
Wanjohi
2024-05-01 03:27:36 +03:00
committed by GitHub
parent 4865366342
commit 3222d3b4e5
4 changed files with 11 additions and 1 deletions
+3
View File
@@ -0,0 +1,3 @@
module github.com/wanjohiryan/netris
go 1.22.2
+7
View File
@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("hello world")
}