9 lines
197 B
TypeScript
9 lines
197 B
TypeScript
|
import {NgModule} from "@angular/core";
|
||
|
import {UrlPrefixPipe} from "./url-prefix.pipe";
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [UrlPrefixPipe],
|
||
|
exports: [UrlPrefixPipe]
|
||
|
})
|
||
|
export class UrlPrefixModule {}
|