UNPKG

@softvisio/core

Version:
22 lines (17 loc) 395 B
import Api from "#lib/app/api"; import Frontend from "#lib/app/api/frontend"; const COMPONENTS = { "frontend": Frontend, }; export default class AppRpc extends Api { constructor ( app, config ) { super( app, config, COMPONENTS ); } // properties get isRpc () { return true; } get httpServer () { return this.app.privateHttpServer; } }