2024-11-16 12:51:17 +03:00

11 lines
171 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
}