mirror of
https://github.com/Polaris-Entertainment/bytefy.git
synced 2026-04-09 09:29:39 +00:00
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import { Routes } from '@angular/router';
|
|
import { AsciiToTextComponent } from '../tools/ascii-to-text/ascii-to-text.component';
|
|
import { GuidComponent } from '../tools/guid/guid.component';
|
|
import { Base64ConverterComponent } from '../tools/base64-converter/base64-converter.component';
|
|
import { JwtToJsonComponent } from '../tools/jwt-to-json/jwt-to-json.component';
|
|
import { TextToCronComponent } from '../tools/text-to-cron/text-to-cron.component';
|
|
import { DdsToPngComponent } from '../tools/dds-to-png/dds-to-png.component';
|
|
|
|
export const routes: Routes = [
|
|
{
|
|
path: 'ascii-to-text',
|
|
pathMatch: 'full',
|
|
component: AsciiToTextComponent
|
|
},
|
|
{
|
|
path: 'guid',
|
|
pathMatch: 'full',
|
|
component: GuidComponent
|
|
},
|
|
{
|
|
path: 'base64-converter',
|
|
pathMatch: 'full',
|
|
component: Base64ConverterComponent
|
|
},
|
|
{
|
|
path: 'jwt-decoder',
|
|
pathMatch: 'full',
|
|
component: JwtToJsonComponent
|
|
},
|
|
{
|
|
path: 'text-to-cron',
|
|
pathMatch: 'full',
|
|
component: TextToCronComponent
|
|
},
|
|
{
|
|
path: 'dds-to-png',
|
|
pathMatch: 'full',
|
|
component: DdsToPngComponent
|
|
}
|
|
];
|
|
|