import { NgModule }  		from '@angular/core'

import { SafeHtmlPipe } from '../../pipes/pipe.safeHtml'

const PIPES = [
    SafeHtmlPipe
]


@NgModule({

	declarations: [

		...PIPES,
	],
	exports: [
		...PIPES,
	]
})
export class CommonPipesModule {}
