2024-11-15 01:04:48 +03:00

11 lines
169 B
Go

package postRules
import (
"github.com/gin-gonic/gin"
)
// Only owner of the post can change it
func PostReadRule(c *gin.Context) (bool, error) {
return true, nil
}