mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 22:32:33 +03:00
31 lines
597 B
Go
31 lines
597 B
Go
package controlers
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
Repositories "micrach/repositories"
|
|
)
|
|
|
|
func GetThreads(c *gin.Context) {
|
|
threads, err := Repositories.Threads.Get(10, 10)
|
|
if err != nil {
|
|
c.JSON(http.StatusOK, gin.H{"error": true})
|
|
return
|
|
}
|
|
c.HTML(http.StatusOK, "index.html", threads)
|
|
}
|
|
|
|
func GetThread(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"route": "get thread"})
|
|
}
|
|
|
|
func CreateThread(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"route": "create thread"})
|
|
}
|
|
|
|
func UpdateThread(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"route": "update thread"})
|
|
}
|