Closed LonelyVikingMichael closed 1 year ago
Currently we're using factory patterns to inject configurations into route handlers and service layers. This can be cleaned up somewhat by storing the StarliteUsersConfig object in app.state and using dependency injection to retrieve values.
StarliteUsersConfig
app.state
This is no longer necessary since adhering to the plugin protocol.
Currently we're using factory patterns to inject configurations into route handlers and service layers. This can be cleaned up somewhat by storing the
StarliteUsersConfig
object inapp.state
and using dependency injection to retrieve values.