watchyourlan/internal/web/api.go
2024-08-21 15:34:24 +07:00

12 lines
No EOL
139 B
Go

package web
import (
"net/http"
"github.com/gin-gonic/gin"
)
func apiAll(c *gin.Context) {
c.IndentedJSON(http.StatusOK, allHosts)
}