summaryrefslogtreecommitdiffstats
path: root/components/datalake-handler/admin/src/app/app-routing.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'components/datalake-handler/admin/src/app/app-routing.module.ts')
-rw-r--r--components/datalake-handler/admin/src/app/app-routing.module.ts23
1 files changed, 0 insertions, 23 deletions
diff --git a/components/datalake-handler/admin/src/app/app-routing.module.ts b/components/datalake-handler/admin/src/app/app-routing.module.ts
deleted file mode 100644
index 50802a6b..00000000
--- a/components/datalake-handler/admin/src/app/app-routing.module.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { NgModule } from "@angular/core";
-import { Routes, RouterModule } from "@angular/router";
-
-import { FeederComponent } from "./feeder/feeder.component";
-import { TopicsComponent } from "./topics/topics.component";
-import { DatabaseComponent } from "./database/database.component";
-
-const routes: Routes = [
- { path: "", redirectTo: "/feeder", pathMatch: "full" },
- { path: "feeder", component: FeederComponent },
- { path: "topics", component: TopicsComponent },
- { path: "database", component: DatabaseComponent }
-];
-
-@NgModule({
- imports: [
- RouterModule.forRoot(routes, {
- useHash: true
- })
- ],
- exports: [RouterModule]
-})
-export class AppRoutingModule {}