mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-21 00:52:55 +00:00
style: remove extraneous whitespace in imports
This commit is contained in:
committed by
Rainer Killinger
parent
16bbb7e9e3
commit
98f02b8830
28
src/app.ts
28
src/app.ts
@@ -13,25 +13,25 @@
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
import { SCNotFoundErrorResponse, SCUnsupportedMediaTypeErrorResponse } from '@openstapps/core';
|
||||
import { SCValidator } from '@openstapps/core-validator';
|
||||
import {SCNotFoundErrorResponse, SCUnsupportedMediaTypeErrorResponse} from '@openstapps/core';
|
||||
import {SCValidator} from '@openstapps/core-validator';
|
||||
import * as bodyParser from 'body-parser';
|
||||
import * as config from 'config';
|
||||
import * as cors from 'cors';
|
||||
import * as express from 'express';
|
||||
import * as morgan from 'morgan';
|
||||
import { logger, mailer } from './common';
|
||||
import { MailQueue } from './notification/MailQueue';
|
||||
import { bulkAddRouter } from './routes/BulkAddRoute';
|
||||
import { bulkDoneRouter } from './routes/BulkDoneRoute';
|
||||
import { bulkRouter } from './routes/BulkRoute';
|
||||
import { indexRouter } from './routes/IndexRoute';
|
||||
import { multiSearchRouter } from './routes/MultiSearchRoute';
|
||||
import { searchRouter } from './routes/SearchRoute';
|
||||
import { thingUpdateRouter } from './routes/ThingUpdateRoute';
|
||||
import { BulkStorage } from './storage/BulkStorage';
|
||||
import { DatabaseConstructor } from './storage/Database';
|
||||
import { Elasticsearch } from './storage/elasticsearch/Elasticsearch';
|
||||
import {logger, mailer} from './common';
|
||||
import {MailQueue} from './notification/MailQueue';
|
||||
import {bulkAddRouter} from './routes/BulkAddRoute';
|
||||
import {bulkDoneRouter} from './routes/BulkDoneRoute';
|
||||
import {bulkRouter} from './routes/BulkRoute';
|
||||
import {indexRouter} from './routes/IndexRoute';
|
||||
import {multiSearchRouter} from './routes/MultiSearchRoute';
|
||||
import {searchRouter} from './routes/SearchRoute';
|
||||
import {thingUpdateRouter} from './routes/ThingUpdateRoute';
|
||||
import {BulkStorage} from './storage/BulkStorage';
|
||||
import {DatabaseConstructor} from './storage/Database';
|
||||
import {Elasticsearch} from './storage/elasticsearch/Elasticsearch';
|
||||
|
||||
export const app = express();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user