watchyourlan/internal/web/api.go
2024-08-22 14:07:05 +07:00

18 lines
274 B
Go

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