projects/ng-jkmdev-tester/src/app/app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { NgJkmdevGithubModule } from 'ng-jkmdev-github';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NgJkmdevGithubModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }