init repo

This commit is contained in:
2026-05-18 08:20:03 -04:00
commit 8e26ddba30
2 changed files with 12 additions and 0 deletions

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module code.jakeyoungdev.com/docker-interview/meeting-1
go 1.23.0

9
main.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("hi")
}