gitlab.com/evatix-go/core@v1.3.55/coreinterface/baseactioninf/all-is-checkers.go (about)

     1  package baseactioninf
     2  
     3  type IsExecutableChecker interface {
     4  	IsExecutable() bool
     5  }
     6  
     7  type IsExecutableUsingMapChecker interface {
     8  	IsExecutableUsingMap(conditionsNamesWithFlag map[string]bool) bool
     9  }