go-cdn/website/routers/home.go

12 lines
137 B
Go
Raw Permalink Normal View History

2021-07-08 21:30:32 +00:00
package routers
import (
"net/http"
"github.com/gin-gonic/gin"
)
func Home(c *gin.Context) {
c.String(http.StatusOK, "Working!")
}