2017年5月13日 星期六

Golang: Gin Http Server

Example Code:


package main

import (
 "fmt"
 "github.com/gin-gonic/gin"
)

func main() {


 router.GET("/helloworld", func(c *gin.Context) {
  c.String(200, "OK")
 })

 
 // run as 8080 port
 router.Run(":8080")
}


沒有留言:

張貼留言

© Mac Taylor, 歡迎自由轉貼。
Background Email Pattern by Toby Elliott
Since 2014