Add web server with admin dashboard and media approval endpoints

This commit is contained in:
2025-05-11 22:14:32 +03:30
parent 3e7f6b92d3
commit 75bad5e091
8 changed files with 179 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
package handlers
import "github.com/gin-gonic/gin"
func AdminDashboardHandler (c *gin.Context) {
c.JSON(200, gin.H{
"YouAreOn": "AdminDashboard",
})
}