12 lines
No EOL
139 B
Go
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)
|
|
} |