9 lines
116 B
Go
9 lines
116 B
Go
package main
|
|
|
|
func main() {
|
|
router := gin.Default()
|
|
router.GET("/test", runTest)
|
|
|
|
router.Run("localhost:8080")
|
|
}
|