
* feat(remove-bg): add remove-bg integration * feat(removebg): update name and icon * docs(removebg): update name and icon * docs: add remove.bg in available apps * docs(removebg): correct path --------- Co-authored-by: Ali BARIN <ali.barin53@gmail.com>
13 lines
283 B
TypeScript
13 lines
283 B
TypeScript
import { IGlobalVariable } from '@automatisch/types';
|
|
|
|
const verifyCredentials = async ($: IGlobalVariable) => {
|
|
await $.http.get('/account');
|
|
|
|
await $.auth.set({
|
|
screenName: $.auth.data.screenName,
|
|
apiKey: $.auth.data.apiKey,
|
|
});
|
|
};
|
|
|
|
export default verifyCredentials;
|