a07d9d06ed
Add RequireOpts, RequireWithOpts, and GetModule. Move helpers to lifecycle_internal.go and errors to errors.go. Remove unused GenericModule. Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
163 B
Go
7 lines
163 B
Go
package app
|
|
|
|
import "errors"
|
|
|
|
// ErrModuleNotFound is returned when a module is not found in the lifecycle.
|
|
var ErrModuleNotFound = errors.New("module not found")
|