Check is now a function
This commit is contained in:
parent
5f72582c92
commit
f8ed172666
@ -11,6 +11,12 @@ import (
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func check(ctx *gin.Context) {
|
||||
ctx.JSON(http.StatusOK, gin.H{
|
||||
"detail": "I'm alright, thank you",
|
||||
})
|
||||
}
|
||||
|
||||
func getAvatar(ctx *gin.Context) {
|
||||
avatar_id := ctx.Param("id")
|
||||
if _, err := os.Stat("avatars"); errors.Is(err, os.ErrNotExist) {
|
||||
@ -48,11 +54,7 @@ func getAvatar(ctx *gin.Context) {
|
||||
func main() {
|
||||
router := gin.Default()
|
||||
router.GET("/avatars/:id", getAvatar)
|
||||
router.GET("/check", func(ctx *gin.Context) {
|
||||
ctx.JSON(http.StatusOK, gin.H{
|
||||
"detail": "I'm alright, thank you",
|
||||
})
|
||||
})
|
||||
router.GET("/check", check)
|
||||
host := os.Getenv("HOST")
|
||||
port := os.Getenv("PORT")
|
||||
if host == "" {
|
||||
|
Loading…
Reference in New Issue
Block a user