commit f32ed715c39691bd222eb507c60fa23e794879ab Author: Noah Date: Thu Mar 7 15:11:25 2024 -0600 Init commit 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") +}