feat(wordpress): add find post action

This commit is contained in:
Rıdvan Akca
2024-05-29 11:48:54 +02:00
parent 69416c24e2
commit c191b7a3cf
3 changed files with 39 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
import createPost from './create-post/index.js';
import findPost from './find-post/index.js';
import updatePost from './update-post/index.js';
export default [createPost, updatePost];
export default [createPost, findPost, updatePost];