mirror of https://github.com/certd/certd
10 lines
280 B
TypeScript
10 lines
280 B
TypeScript
![]() |
import { AbstractAccess, IAccessService } from "@certd/pipeline";
|
||
|
import { aliyunSecret } from "../user.secret";
|
||
|
export class AccessServiceTest implements IAccessService {
|
||
|
async getById(id: any): Promise<AbstractAccess> {
|
||
|
return {
|
||
|
...aliyunSecret,
|
||
|
} as any;
|
||
|
}
|
||
|
}
|