1
0
Fork 0
mirror of https://github.com/MedzikUser/go-cdn synced 2024-08-15 03:19:36 +00:00
go-cdn/website/routers/home.go
2021-07-08 23:30:32 +02:00

11 lines
137 B
Go

package routers
import (
"net/http"
"github.com/gin-gonic/gin"
)
func Home(c *gin.Context) {
c.String(http.StatusOK, "Working!")
}