To make it more intuitive let's make providers into it's own property on the plugin: ``` export default new Plugin({ // ... providers: { sendEmail: { // ... config init: () => {} }, sendSms: { // ... config init: () => {} } } }) ```