From adeee128bfc4c265545c0f750801352930d67485 Mon Sep 17 00:00:00 2001 From: greysoh Date: Tue, 19 Nov 2024 07:20:29 -0500 Subject: [PATCH] chore: Initial commit. --- go.mod | 3 +++ main.go | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 go.mod create mode 100644 main.go diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..0395aab --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.greysoh.dev/imterah/boron + +go 1.23.2 diff --git a/main.go b/main.go new file mode 100644 index 0000000..f7b60bd --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, world!") +}