Mercurial > hg > ugly-duckling
view src/app/app.module.ts @ 13:b12e78d6185e
Add a component for opening local audio files, unfinished and of course untested. Expect cross-cutting concerns to follow.
| author | Lucas Thompson <dev@lucas.im> |
|---|---|
| date | Thu, 27 Oct 2016 13:36:09 +0100 |
| parents | 1fcc8c9ec54c |
| children | d9c0a1ca005c |
line wrap: on
line source
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { HttpModule } from '@angular/http'; import { AppComponent } from './app.component'; import {MailService} from "./mail.service"; import {MaterialModule} from "@angular/material"; import { WaveformComponent } from './waveform/waveform.component'; import { AudioFileOpenComponent } from './audio-file-open/audio-file-open.component'; @NgModule({ declarations: [ AppComponent, WaveformComponent, AudioFileOpenComponent ], imports: [ BrowserModule, FormsModule, HttpModule, MaterialModule.forRoot() ], providers: [ MailService, {provide: 'piper-server-uri', useValue: 'ws://not/a/real/path'} ], bootstrap: [AppComponent] }) export class AppModule { }
