github.com/wawandco/ox@v0.13.6-0.20230809142027-913b3d837f2a/plugins/base/new/initializer.go (about)

     1  package new
     2  
     3  import (
     4  	"context"
     5  )
     6  
     7  // Initializer is intended to initialize applications,
     8  // things like generating files or running commands.
     9  type Initializer interface {
    10  	// Initialize receives the context and the root folder where
    11  	// the application is being initialized.
    12  	Initialize(context.Context, Options) error
    13  }