i'm using below snippent to add or update the poli...
# help
a
i'm using below snippent to add or update the policy.
Copy code
func (c *Client) AddOrUpdatePolicy(ctx context.Context) error {
    policySet := &cerbosclient.PolicySet{}
    if err := c.CerbosAdminClient.AddOrUpdatePolicy(ctx, policySet); err != nil {
        c.log.Errorf("Failed to add or update policy", err)
        return err
    }

    return nil
}
it is nt working, can someone help me on this
o
hi @Anil Kumar G A, what is the error message saying?