ToolJet/frontend/src/Editor/QueryManager/QueryEditors/index.js

24 lines
538 B
JavaScript
Raw Normal View History

2021-05-07 18:13:11 +00:00
import { RestApi } from './RestApi';
import { Mysql } from './Mysql';
import { Postgresql } from './Postgresql';
import { Stripe } from './Stripe';
import { Firestore } from './Firestore';
import { Redis } from './Redis';
import { Googlesheets } from './Googlesheets';
import { Elasticsearch } from './Elasticsearch';
2021-05-04 06:45:04 +00:00
import { Slack } from './Slack';
2021-05-04 12:40:44 +00:00
import { Mongodb } from './Mongodb';
export const allSources = {
2021-05-07 18:13:11 +00:00
RestApi,
Mysql,
Postgresql,
Stripe,
Firestore,
Redis,
Googlesheets,
2021-05-04 06:45:04 +00:00
Elasticsearch,
2021-05-04 12:40:44 +00:00
Slack,
Mongodb
};