2021-04-30 16:15:42 +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';
|
2021-04-30 16:15:42 +00:00
|
|
|
|
|
|
|
|
export const allSources = {
|
|
|
|
|
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
|
2021-04-30 16:15:42 +00:00
|
|
|
};
|