Hacker News new | ask | show | jobs
by cmackenzie1 480 days ago
I’ve gone back and forth on using TypeId or named plugins using a string. Mainly switched to the named variant to support each oauth provider lookup by name.

If you have any suggestions for making it better, let me know!

1 comments

Big enum?
If the library wasn't open for extension, an enum could work. With the currently model, users can write their own plugins, bring their own storage provider, or even write an email consumer that reacts to events from the EventBus - all without needing to upstream their changes to torii and torii-core.
What about providing a plugin registration macro that generates an enum that can be provided to the library.
So it’s not open for extension?