feat(ghost): add ghost integration (#1401)

This commit is contained in:
Rıdvan Akca
2023-11-07 13:30:26 +03:00
committed by GitHub
parent c42374e031
commit f0e8f070a8
11 changed files with 248 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { IGlobalVariable } from '@automatisch/types';
import verifyCredentials from './verify-credentials';
const isStillVerified = async ($: IGlobalVariable) => {
await verifyCredentials($);
return true;
};
export default isStillVerified;