This commit is contained in:
Taric Xin
2021-12-22 20:17:29 +08:00
parent 2181b8e5cb
commit 5c8002a093
18 changed files with 695 additions and 630 deletions

View File

@ -0,0 +1,13 @@
import { Injectable, Injector } from '@angular/core';
import { BaseService } from '@shared';
@Injectable({
providedIn: 'root'
})
export class FreightAccountService extends BaseService {
$mock_url = '/rule?_allow_anonymous=true';
constructor(public injector: Injector) {
super(injector);
}
}