This commit is contained in:
潘晓云
2022-03-09 14:18:56 +08:00
parent 647d42690c
commit 957a66254f
4 changed files with 126 additions and 36 deletions

View File

@ -0,0 +1,12 @@
import { Injectable, Injector } from '@angular/core';
import { BaseService } from '@shared';
@Injectable({
providedIn: 'root'
})
export class AccountManagemantService extends BaseService {
constructor(public injector: Injector) {
super(injector)
}
}