initial commit

main
Sean Hickey 2022-09-27 12:21:57 -07:00
commit 70d3ee92f4
2 changed files with 14 additions and 0 deletions

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module gitea.wisellama.rocks/Project-Ely/project-ely
go 1.18

11
main.go Normal file
View File

@ -0,0 +1,11 @@
package main
import (
"fmt"
"log"
)
func main() {
fmt.Println("Soup")
log.Printf("logs\n")
}