mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-12-24 09:17:13 +00:00
18 lines
339 B
TypeScript
18 lines
339 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { FusePlatformService } from '@fuse/services/platform/platform.service';
|
|
|
|
@NgModule({
|
|
providers: [
|
|
FusePlatformService
|
|
]
|
|
})
|
|
export class FusePlatformModule
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor(private _fusePlatformService: FusePlatformService)
|
|
{
|
|
}
|
|
}
|