Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Codecrew / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 30
  • Merge Requests 2
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • moya
  • code
  • moya-angular-common
  • src
  • index.ts
  • Tuukka Kivilahti's avatar
    removed melody, added MoyaNG to urls · bd3b9a01
    Tuukka Kivilahti committed Feb 10, 2018
    bd3b9a01
index.ts 324 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import { MoyaRestModule} from './moya-rest/moya-rest.module';
import {NgModule} from "@angular/core";


export * from './moya-rest';

const MODULES  = [
    MoyaRestModule
];

@NgModule({
    imports: [MoyaRestModule.forRoot()],
    exports: MODULES
})

@NgModule({exports: MODULES})
export class MoyaAngularCommonModule {
}