regorus 0.9.1

A fast, lightweight Rego (OPA policy language) interpreter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

pub mod context;
pub mod expr;
pub mod literals;
pub mod operators;
pub mod references;
pub mod span;

pub use context::*;
pub use expr::*;
pub use literals::*;
pub use operators::*;
pub use references::*;
pub use span::*;