Without writing the implementation of our services yet, we can define what our CoreModule will generally look like with NgModule by starting to define what it should provide:
Let's create app/modules/core/core.module.ts:
// angular import { NgModule } from '@angular/core'; @NgModule({}) export class CoreModule { }