mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-29 17:38:07 +00:00
20 lines
448 B
JavaScript
20 lines
448 B
JavaScript
|
|
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';
|
||
|
|
|
||
|
|
export const allSources = {
|
||
|
|
Restapi,
|
||
|
|
Mysql,
|
||
|
|
Postgresql,
|
||
|
|
Stripe,
|
||
|
|
Firestore,
|
||
|
|
Redis,
|
||
|
|
Googlesheets,
|
||
|
|
Elasticsearch
|
||
|
|
};
|