mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-20 08:33:11 +00:00
fix: build issues
This commit is contained in:
@@ -14,9 +14,8 @@
|
||||
*/
|
||||
import {Plugin} from '@openstapps/api-plugin';
|
||||
import * as express from 'express';
|
||||
import schema from '../../lib/schema.json';
|
||||
import {SCMinimalRequest} from './protocol/request.js';
|
||||
import {SCMinimalResponse} from './protocol/response.js';
|
||||
import {requestSchema, SCMinimalRequest} from './protocol/request.js';
|
||||
import {responseSchema, SCMinimalResponse} from './protocol/response.js';
|
||||
|
||||
/**
|
||||
* The Plugin Class
|
||||
@@ -25,9 +24,9 @@ import {SCMinimalResponse} from './protocol/response.js';
|
||||
* TODO: rename the class
|
||||
*/
|
||||
export class MinimalPlugin extends Plugin {
|
||||
requestSchema = schema.SCMinimalRequest;
|
||||
requestSchema = requestSchema;
|
||||
|
||||
responseSchema = schema.SCMinimalResponse;
|
||||
responseSchema = responseSchema;
|
||||
|
||||
/**
|
||||
* Calculates the sum of a list of numbers
|
||||
|
||||
Reference in New Issue
Block a user