Hacker News new | ask | show | jobs
by karmakaze 2581 days ago
What are some of the parts to your naming conventions if there are any prevailing patterns?
1 comments

Currently we're experimenting with namespacing per "ownership" of that namespace.

For instance, if the interactor is in charge of onboarding a new account, we have it under something like this:

Account::SetupOnboarding

Note that we also have an Account model here and so anything namespaced under it will be assumed to take place in that context.