12 lines
252 B
TypeScript
12 lines
252 B
TypeScript
import { IGlobalVariable } from '@automatisch/types';
|
|
|
|
const verifyCredentials = async ($: IGlobalVariable) => {
|
|
await $.http.get('/v2/usage');
|
|
|
|
await $.auth.set({
|
|
screenName: $.auth.data.screenName,
|
|
});
|
|
};
|
|
|
|
export default verifyCredentials;
|