how to import auth service in angular 8 code example
Example 1: how to create app.routing.module.ts in angular 6
ng generate module app-routing --flat --module=app
Example 2: how to inject service in component angular 6
you can inject service in components constructor:
constructor(public anyService: Service){}