mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-10-31 22:40:01 +00:00
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",
|
||
|
})
|
||
|
}
|