From f32ed715c39691bd222eb507c60fa23e794879ab Mon Sep 17 00:00:00 2001 From: Noah Date: Thu, 7 Mar 2024 15:11:25 -0600 Subject: [PATCH] Init commit --- README.md | 2 ++ go.mod | 3 +++ main.go | 7 +++++++ 3 files changed, 12 insertions(+) create mode 100644 README.md create mode 100644 go.mod create mode 100644 main.go diff --git a/README.md b/README.md new file mode 100644 index 0000000..10acd34 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# LapisDeploy +[Lapis](https://leafo.net/lapis/) web application deployment program, written in *Go!* diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..18f1b8c --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module code.retroedge.tech/noah/lapisdeploy + +go 1.22.0 diff --git a/main.go b/main.go new file mode 100644 index 0000000..db47c6d --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, world") +}