feat: Implement Helix app with new chat action

This commit is contained in:
Faruk AYDIN
2024-01-02 19:06:07 +01:00
parent 6f7dcc2b6e
commit b5460712e6
10 changed files with 168 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;