go for it

This commit is contained in:
Sebastian Cabrera 2025-06-11 14:44:52 -04:00
parent 3767be9f67
commit c107d94b11
Signed by: okseby
GPG key ID: DA858232740D0404
5 changed files with 137 additions and 1 deletions

8
main.go Normal file
View file

@ -0,0 +1,8 @@
package main
import "git.okseby.com/okseby/playground-go/server"
func main() {
server := server.NewServer("0.0.0.0:7878")
server.ListenAndServe()
}