dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_FileSystemModule cluster_FileSystemModule_imports RestPythonModule RestPythonModule FileSystemModule FileSystemModule RestPythonModule->FileSystemModule DomainModule DomainModule DomainModule->FileSystemModule

File

src/filesystem/file-system.module.ts

Description

The FileSystemModule includes a directive and service for interfacing with a FileSystem on the REST server.

import { NgModule } from '@angular/core';
import { HttpModule } from '@angular/http';

import { RestPythonModule } from '../rest-python/rest-python.module';
import { DomainModule } from '../domain/domain.module';

export { FileSystemService }         from './file-system.service';
export { fileSystemServiceProvider } from './file-system-service-provider';

/**
 * The FileSystemModule includes a directive and service for interfacing with a
 * FileSystem on the REST server.
 */
@NgModule({
    imports:      [
        HttpModule,
        RestPythonModule,
        DomainModule
        ],
    exports:      [ ],
    declarations: [ ]
})
export class FileSystemModule {}

results matching ""

    No results matching ""