Created the main router with ping endpoint

This commit is contained in:
2025-11-14 03:13:17 +03:00
parent 185189ba85
commit 5d71f42361
4 changed files with 37 additions and 1 deletions

View File

@@ -1,7 +1,12 @@
package main
import "fmt"
import (
"echo/api"
"fmt"
)
func main() {
fmt.Println("Hello from echo-echo-cho-o")
api.BuildRouter(":8080")
}