mirror of
https://codeberg.org/superseriousbusiness/gotosocial.git
synced 2025-04-01 22:35:00 +03:00
13 lines
169 B
Go
13 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",
|
|
})
|
|
}
|