Added backend dockerfile

This commit is contained in:
Leons Aleksandrovs
2025-07-03 15:04:27 +03:00
parent 1818b3f225
commit df38c61069
6 changed files with 52 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
module backend
go 1.24.4
+11
View File
@@ -0,0 +1,11 @@
package main
import "time"
func main() {
println("Hello, world!")
for {
time.Sleep(1 * time.Second)
}
}