Files
echo/main.go

13 lines
131 B
Go

package main
import (
"echo/api"
"fmt"
)
func main() {
fmt.Println("Hello from echo-echo-cho-o")
api.BuildRouter(":8080")
}