This commit is contained in:
Lingzi
2022-03-14 18:18:23 +08:00
parent 47522368ed
commit 97a3aca60c
24 changed files with 882 additions and 112 deletions

View File

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