mirror of
https://github.com/certd/certd.git
synced 2026-04-14 20:40:53 +08:00
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;
|
|
}
|
|
}
|