12 lines
140 B
Go
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)
|
|
}
|