forked from TrueCloudLab/policy-engine
a08f600d97
* Create pkg package * Move chain-relates structures to pkg/chain package * Move inmemory and interface files to pkg/engine package * Move resource structures to pkg/resource package * Move GlobMatch to util package Signed-off-by: Airat Arifullin <aarifullin@yadro.com>
10 lines
281 B
Go
10 lines
281 B
Go
package chain
|
|
|
|
// Name represents the place in the request lifecycle where policy is applied.
|
|
type Name string
|
|
|
|
const (
|
|
// Ingress represents chains applied when crossing user/storage network boundary.
|
|
// It is not applied when talking between nodes.
|
|
Ingress Name = "ingress"
|
|
)
|