github.com/wawandco/oxpecker@v1.5.7-0.20210910201653-5958d4afdd89/lifecycle/new/afterinitializer.go (about)

     1  package new
     2  
     3  import (
     4  	"context"
     5  )
     6  
     7  // AfterInitializer is intended to initialize applications,
     8  // things that should happen at the end of the application
     9  // creation process.
    10  type AfterInitializer interface {
    11  	// AfterInitialize receives the context and the root folder where
    12  	// the application is being initialized.
    13  	AfterInitialize(context.Context, Options) error
    14  }