refactor(basic.gblib): Renaming ImageProcessing.
This commit is contained in:
parent
cf36adfab7
commit
a071a10ee9
2 changed files with 3 additions and 3 deletions
|
@ -43,7 +43,7 @@ import { createServerRouter } from 'typescript-rest-rpc/lib/server.js';
|
||||||
import { DialogKeywords } from './services/DialogKeywords.js';
|
import { DialogKeywords } from './services/DialogKeywords.js';
|
||||||
import { SystemKeywords } from './services/SystemKeywords.js';
|
import { SystemKeywords } from './services/SystemKeywords.js';
|
||||||
import { WebAutomationServices } from './services/WebAutomationServices.js';
|
import { WebAutomationServices } from './services/WebAutomationServices.js';
|
||||||
import { ImageProcessing } from './services/ImageProcessing.js';
|
import { ImageProcessingServices } from './services/ImageProcessingServices.js';
|
||||||
import { DebuggerService } from './services/DebuggerService.js';
|
import { DebuggerService } from './services/DebuggerService.js';
|
||||||
import * as koaBody from 'koa-body';
|
import * as koaBody from 'koa-body';
|
||||||
import Koa from 'koa';
|
import Koa from 'koa';
|
||||||
|
@ -84,7 +84,7 @@ export class GBBasicPackage implements IGBPackage {
|
||||||
const wa = new WebAutomationServices(min, null, dk);
|
const wa = new WebAutomationServices(min, null, dk);
|
||||||
const sys = new SystemKeywords(min, null, dk, wa);
|
const sys = new SystemKeywords(min, null, dk, wa);
|
||||||
const dbg = new DebuggerService(min, null, dk);
|
const dbg = new DebuggerService(min, null, dk);
|
||||||
const img = new ImageProcessing(min, null, dk);
|
const img = new ImageProcessingServices(min, null, dk);
|
||||||
dk.wa = wa;
|
dk.wa = wa;
|
||||||
wa.sys = sys;
|
wa.sys = sys;
|
||||||
const dialogRouter = createServerRouter(`/api/v2/${min.botId}/dialog`, dk);
|
const dialogRouter = createServerRouter(`/api/v2/${min.botId}/dialog`, dk);
|
||||||
|
|
|
@ -39,7 +39,7 @@ import sharp from 'sharp';
|
||||||
/**
|
/**
|
||||||
* Image processing services of conversation to be called by BASIC.
|
* Image processing services of conversation to be called by BASIC.
|
||||||
*/
|
*/
|
||||||
export class ImageProcessing {
|
export class ImageProcessingServices {
|
||||||
/**
|
/**
|
||||||
* Reference to minimal bot instance.
|
* Reference to minimal bot instance.
|
||||||
*/
|
*/
|
Loading…
Add table
Reference in a new issue