mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
* feat(access-control): embed openfga in signoz * feat(authz): rename access control to authz * feat(authz): fix codeowners and go mod tidy * feat(authz): fix lint * feat(authz): update go version and move convertor to instrumentation * feat(authz): some more lint issues * feat(authz): some more lint issues * feat(authz): some more lint issues * feat(authz): fix more lint issues * feat(authz): make logger converter interface
20 lines
236 B
Go
20 lines
236 B
Go
package schema
|
|
|
|
import (
|
|
_ "embed"
|
|
|
|
"github.com/openfga/language/pkg/go/transformer"
|
|
)
|
|
|
|
var (
|
|
//go:embed base.fga
|
|
baseDSL string
|
|
)
|
|
|
|
var SchemaModules = []transformer.ModuleFile{
|
|
{
|
|
Name: "base.fga",
|
|
Contents: baseDSL,
|
|
},
|
|
}
|