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

     1  package baseactioninf
     2  
     3  type Namer interface {
     4  	Name() string
     5  }
     6  
     7  type Initializer interface {
     8  	Initialize()
     9  }
    10  
    11  type Planner interface {
    12  	Plan()
    13  }
    14  
    15  type IsApplier interface {
    16  	IsApply() (isSuccess bool)
    17  }