feat(removebg): Add Remove image background action

This commit is contained in:
Mohammed Zaher
2023-11-16 15:39:46 +00:00
parent 073ce3bf1b
commit 8075b65e14
3 changed files with 86 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
import defineApp from '../../helpers/define-app';
import addAuthHeader from './common/add-auth-header';
import auth from './auth';
import actions from './actions';
export default defineApp({
name: 'Remove.bg',
@@ -13,4 +14,5 @@ export default defineApp({
primaryColor: '55636c',
beforeRequest: [addAuthHeader],
auth,
actions,
});