From 3222d3b4e5329d04ca23399a9099e0c8e1a8dbf9 Mon Sep 17 00:00:00 2001 From: Wanjohi <71614375+wanjohiryan@users.noreply.github.com> Date: Wed, 1 May 2024 03:27:36 +0300 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20Add=20input=20server=20(#37?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 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 --- {.dev => .scripts/dev}/script.sh | 0 bin/input/go.mod | 3 +++ bin/input/main.go | 7 +++++++ moq-server | 2 +- 4 files changed, 11 insertions(+), 1 deletion(-) rename {.dev => .scripts/dev}/script.sh (100%) create mode 100644 bin/input/go.mod create mode 100644 bin/input/main.go diff --git a/.dev/script.sh b/.scripts/dev/script.sh similarity index 100% rename from .dev/script.sh rename to .scripts/dev/script.sh diff --git a/bin/input/go.mod b/bin/input/go.mod new file mode 100644 index 00000000..146af79e --- /dev/null +++ b/bin/input/go.mod @@ -0,0 +1,3 @@ +module github.com/wanjohiryan/netris + +go 1.22.2 diff --git a/bin/input/main.go b/bin/input/main.go new file mode 100644 index 00000000..7a94ca6a --- /dev/null +++ b/bin/input/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("hello world") +} \ No newline at end of file diff --git a/moq-server b/moq-server index f1172065..2240008c 160000 --- a/moq-server +++ b/moq-server @@ -1 +1 @@ -Subproject commit f1172065be3e877b432b5e350d715d039b3c2a71 +Subproject commit 2240008c4e14c008a6fca30fd8ae8c493f5c057f