You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi/ClientApp/src/app/requests/remainingrequests.module.ts

28 lines
632 B

import { NgModule } from "@angular/core";
import { FormsModule } from "@angular/forms";
import { RouterModule } from "@angular/router";
import { NgbModule } from "@ng-bootstrap/ng-bootstrap";
import { SidebarModule, TooltipModule, TreeTableModule } from "primeng/primeng";
import { RequestService } from "../services";
@NgModule({
imports: [
FormsModule,
NgbModule.forRoot(),
TreeTableModule,
SidebarModule,
TooltipModule,
],
declarations: [
],
exports: [
RouterModule,
],
providers: [
RequestService,
],
})
export class SearchModule { }