watchyourlan/internal/web/api.go
2024-08-21 19:44:06 +07:00

12 lines
140 B
Go

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