mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-07-15 22:06:22 +00:00
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
import { Injectable } from '@angular/core';
|
|
import { Subject } from 'rxjs';
|
|
|
|
@Injectable()
|
|
export class DeploymentNotificationService {
|
|
deploying: Subject<boolean> = new Subject<boolean>();
|
|
|
|
constructor() {}
|
|
}
|