You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
services is the wrong tool for loading services that should be self contained service consumers - It adds types to TServiceParams with and the matching logic for actually providing those.
In a situation where I want to create a controller, these will never be used the same way as a service, it the control is intended to go the other direction. The context is still important (for setting up logs), but it doesn't need to be specific
🩻 Additional details
always: construct AFTER all services are built
order is not guaranteed / shouldn't matter
never: get provided to service definitions (types or actual values)
constmodule=CreateApplication/CreateLibrary({name: "example",internals: {// ... see other issue},services: {// ... regular logic},// new blockeffect: {// more service functions}});
The text was updated successfully, but these errors were encountered:
🪤 Context
services
is the wrong tool for loading services that should be self contained service consumers - It adds types toTServiceParams
with and the matching logic for actually providing those.In a situation where I want to create a controller, these will never be used the same way as a
service
, it the control is intended to go the other direction. Thecontext
is still important (for setting up logs), but it doesn't need to be specific🩻 Additional details
The text was updated successfully, but these errors were encountered: