Init commit

This commit is contained in:
Noah 2024-03-07 15:11:25 -06:00
commit f32ed715c3
3 changed files with 12 additions and 0 deletions

2
README.md Normal file
View File

@ -0,0 +1,2 @@
# LapisDeploy
[Lapis](https://leafo.net/lapis/) web application deployment program, written in *Go!*

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module code.retroedge.tech/noah/lapisdeploy
go 1.22.0

7
main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, world")
}