rdio-scanner/client/src/app/app.routes.ts
2021-05-18 09:42:49 -04:00

20 lines
458 B
TypeScript

/**
* @license
* Copyright Saubeo Solutions All Rights Reserved
*
* This source code is proprietary and confidential
* Unauthorized copying of this file, via any medium is strictly prohibited
*/
import { Routes } from '@angular/router';
import { routes as rdioScannerRoutes } from './pages/rdio-scanner';
export const routes: Routes = [
...rdioScannerRoutes,
{
path: '**',
pathMatch: 'full',
redirectTo: '',
},
];