File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
server/node-service/src/plugins Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
import { DataSourcePlugin , DataSourcePluginFactory } from "openblocks-sdk/dataSource" ;
2
- import helloWorldPlugin from "./hello-world" ;
3
2
import s3Plugin from "./s3" ;
4
3
import n8nPlugin from "./n8n" ;
5
4
import openApiPlugin from "./openApi" ;
@@ -12,8 +11,7 @@ import athenaPlugin from "./athena";
12
11
import lambdaPlugin from "./lambda" ;
13
12
import googleCloudStorage from "./googleCloudStorage" ;
14
13
15
- const plugins : ( DataSourcePlugin | DataSourcePluginFactory ) [ ] = [
16
- // helloWorldPlugin,
14
+ let plugins : ( DataSourcePlugin | DataSourcePluginFactory ) [ ] = [
17
15
s3Plugin ,
18
16
openApiPlugin ,
19
17
n8nPlugin ,
@@ -27,4 +25,9 @@ const plugins: (DataSourcePlugin | DataSourcePluginFactory)[] = [
27
25
googleCloudStorage ,
28
26
] ;
29
27
28
+ try {
29
+ plugins = require ( "../ee/plugins" ) . default ;
30
+ console . info ( "using ee plugins" ) ;
31
+ } catch { }
32
+
30
33
export default plugins ;
You can’t perform that action at this time.
0 commit comments