mirror of
https://github.com/kataras/iris.git
synced 2025-02-03 07:50:34 +01:00
10 lines
181 B
Go
10 lines
181 B
Go
package rule
|
|
|
|
import "github.com/kataras/iris/context"
|
|
|
|
// Rule a superset of validators
|
|
type Rule interface {
|
|
Claim(ctx *context.Context) bool
|
|
Valid(ctx *context.Context) bool
|
|
}
|