dev-config

This commit is contained in:
Taric Xin
2021-12-23 15:35:45 +08:00
parent 716bbea97c
commit 6ee9324cdb
26 changed files with 609 additions and 265 deletions

View File

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