mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
15 lines
374 B
Perl
15 lines
374 B
Perl
---
|
|
to: <%= plugins_path %>/packages/<%= name %>/lib/index.ts
|
|
---
|
|
|
|
import { QueryError, QueryResult, QueryService, ConnectionTestResult } from 'common';
|
|
|
|
|
|
export default class <%= Name %> implements QueryService {
|
|
async run(sourceOptions: any, queryOptions: any, dataSourceId: string): Promise<QueryResult> {
|
|
return {
|
|
status: 'ok',
|
|
data: {},
|
|
};
|
|
}
|
|
}
|