8 lines
255 B
Go
8 lines
255 B
Go
package app
|
|
|
|
import "gitea.maximumdirect.net/eric/narratio/internal/stage"
|
|
|
|
// Env is the shared dependency container passed to orchestrator components.
|
|
// It aliases stage.Env so orchestration and stages stay on one source of truth.
|
|
type Env = stage.Env
|