Skip to content

Instantly share code, notes, and snippets.

@TheLunaticScripter
Created September 9, 2021 17:13
Show Gist options
  • Save TheLunaticScripter/3aff7d9cdc2d5b5bc303728aad7fc420 to your computer and use it in GitHub Desktop.
Save TheLunaticScripter/3aff7d9cdc2d5b5bc303728aad7fc420 to your computer and use it in GitHub Desktop.
opa_sdk_blog_code3.go
func main() {
...
decisionOptions := sdk.DecisionOptions{
// Rule to be called example /rules/allow
Path: "/rules/allow",
// Input to be used in the decision example {"user": "alice"}
Input: map[string]interface{}{
"user": "bob",
"method": "GET",
},
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment