mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
19 lines
415 B
Cheetah
19 lines
415 B
Cheetah
import { Injectable } from '@angular/core';
|
|
import { Http } from '@angular/http';
|
|
import 'rxjs/add/operator/map';
|
|
|
|
/*
|
|
Generated class for the $CLASSNAME provider.
|
|
|
|
See https://angular.io/docs/ts/latest/guide/dependency-injection.html
|
|
for more info on providers and Angular DI.
|
|
*/
|
|
@Injectable()
|
|
export class $CLASSNAME {
|
|
|
|
constructor(public http: Http) {
|
|
console.log('Hello $CLASSNAME Provider');
|
|
}
|
|
|
|
}
|