feat(gmail): add create draft action

This commit is contained in:
Rıdvan Akca
2024-04-24 12:23:04 +02:00
committed by Jakub P.
parent 99c958b54e
commit 0f76470656
3 changed files with 208 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
import createDraft from './create-draft/index.js';
import replyToEmail from './reply-to-email/index.js';
import sendEmail from './send-email/index.js';
export default [replyToEmail, sendEmail];
export default [createDraft, replyToEmail, sendEmail];