mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-12 15:50:15 -08:00
26 lines
332 B
Go
26 lines
332 B
Go
package schemas
|
|
|
|
import _ "embed"
|
|
|
|
type Schema string
|
|
|
|
var (
|
|
None Schema = ""
|
|
Anything Schema = `{}`
|
|
|
|
//go:embed dockerfile.json
|
|
Dockerfile Schema
|
|
|
|
//go:embed kubernetes.json
|
|
Kubernetes Schema
|
|
|
|
//go:embed rbac.json
|
|
RBAC Schema
|
|
|
|
//go:embed cloud.json
|
|
Cloud Schema
|
|
|
|
//go:embed terraform-raw.json
|
|
TerraformRaw Schema
|
|
)
|