mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
10 lines
200 B
TypeScript
10 lines
200 B
TypeScript
import { NgModule } from '@angular/core'
|
|
|
|
import { EnterDirective } from './enter.directive'
|
|
|
|
@NgModule({
|
|
declarations: [EnterDirective],
|
|
exports: [EnterDirective],
|
|
})
|
|
export class EnterModule {}
|