14 lines
169 B
Go
14 lines
169 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
func statusGet(c *gin.Context) {
|
||
|
c.HTML(http.StatusOK, "index.tmpl", gin.H{
|
||
|
"title": "Posts",
|
||
|
})
|
||
|
}
|