feat: add cryptography app with createHmac action

This commit is contained in:
Ali BARIN
2024-07-15 13:18:49 +00:00
parent f63cc80383
commit 0f9d732667
8 changed files with 97 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import defineApp from '../../helpers/define-app.js';
import actions from './actions/index.js';
export default defineApp({
name: 'Cryptography',
key: 'cryptography',
iconUrl: '{BASE_URL}/apps/cryptography/assets/favicon.svg',
authDocUrl: '{DOCS_URL}/apps/cryptography/connection',
supportsConnections: false,
baseUrl: '',
apiBaseUrl: '',
primaryColor: '001F52',
actions,
});