mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 10:26:29 +02:00
9 lines
195 B
Go
9 lines
195 B
Go
// Package opa implements the policy evaluator interface to make authorization
|
|
// decisions.
|
|
package opa
|
|
|
|
import "embed"
|
|
|
|
// FS is the filesystem for OPA files.
|
|
//go:embed policy
|
|
var FS embed.FS
|