Files
CatsOfMastodonGo/internal/handlers/rejectMedia.go

9 lines
150 B
Go

package handlers
import "github.com/gin-gonic/gin"
func RejectMediaHandler (c *gin.Context) {
c.JSON(200, gin.H{
"YouAreOn": "RejectMedia",
})
}