官术网_书友最值得收藏!

Consistency and standards

For consistency and to reduce the length of our imports as well as prepare for better scalability, let's also create an index.ts file in app/modules/core/services, which will export a const collection of our services as well as export these services (in an alphabetical order to keep things tidy):

import { DatabaseService } from './database.service';
import { LogService } from './log.service';

export const PROVIDERS: any[] = [
DatabaseService,
LogService
];

export * from './database.service';
export * from './log.service';

We will follow a similar pattern of the organization throughout the book.

主站蜘蛛池模板: 宜川县| 哈尔滨市| 正阳县| 寻甸| 伽师县| 尼玛县| 德庆县| 宁波市| 徐水县| 益阳市| 嘉定区| 沁源县| 万盛区| 正镶白旗| 崇文区| 长寿区| 广西| 惠州市| 临清市| 四子王旗| 易门县| 酉阳| 沭阳县| 凤翔县| 敖汉旗| 濮阳市| 渝中区| 杭锦后旗| 同江市| 仙游县| 大化| 阿坝| 麻栗坡县| 苏尼特左旗| 杨浦区| 临安市| 延吉市| 涟水县| 萝北县| 南汇区| 时尚|