nope/lib/index.nodejs.ts

36 lines
888 B
TypeScript
Raw Normal View History

2021-08-04 16:17:23 +00:00
/**
* @author Martin Karkowski
* @email m.karkowski@zema.de
* @create date 2021-08-04 15:46:01
2021-08-30 04:40:51 +00:00
* @modify date 2021-08-27 20:23:34
2021-08-04 16:17:23 +00:00
* @desc [description]
*/
2021-08-30 04:40:51 +00:00
import "reflect-metadata";
import * as communcation from "./communication/index.nodejs";
import * as dispatcher from "./dispatcher/index";
import * as helpers from "./helpers/index.nodejs";
import * as loader from "./loader/index.nodejs";
import * as logger from "./logger/index.nodejs";
import * as modules from "./module/index";
import * as observables from "./observables/index";
import * as promises from "./promise/index";
import * as types from "./types/index";
2021-08-04 16:17:23 +00:00
2021-08-30 04:40:51 +00:00
export {
readInArgs as readInRunNopeBackendArgs,
runNopeBackend
} from "./cli/runNopeBackend";
export * from "./logger/index.nodejs";
export {
communcation,
dispatcher,
helpers,
loader,
logger,
types,
modules,
observables,
promises
};