feat(google-tasks): add create task action

This commit is contained in:
Rıdvan Akca
2024-01-16 16:39:38 +03:00
parent a90b58b6db
commit bd43a6021a
3 changed files with 74 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
import createTask from './create-task/index.js';
import findTask from './find-task/index.js';
import updateTask from './update-task/index.js';
export default [findTask, updateTask];
export default [createTask, findTask, updateTask];