first commit

This commit is contained in:
Adrian Zuercher
2025-04-14 18:03:14 +02:00
parent 46c6b8424d
commit 3d1dee25f1
15 changed files with 72205 additions and 0 deletions

13
main.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import (
"fmt"
"github.com/zuadi/tecamino-dbm.git/server"
)
func main() {
fmt.Println("start")
server := server.NewServer()
panic(server.Serve(8100))
}