zitadel/console/src/app/pipes/to-object/to-object.module.ts
Max Peintner e9d5d1dcaf
feat(console): events (#5092)
Shows the list of events on instance level
2023-02-01 08:54:00 +00:00

12 lines
277 B
TypeScript

import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { ToObjectPipe } from './to-object.pipe';
@NgModule({
declarations: [ToObjectPipe],
imports: [CommonModule],
exports: [ToObjectPipe],
})
export class ToObjectPipeModule {}