mirror of https://github.com/certd/certd
11 lines
315 B
TypeScript
11 lines
315 B
TypeScript
import { IAccessService } from "@certd/pipeline";
|
|
import { AliyunAccess } from "@certd/plugin-aliyun";
|
|
import { aliyunSecret } from "../user.secret";
|
|
export class AccessServiceTest implements IAccessService {
|
|
async getById(id: any): Promise<any> {
|
|
return {
|
|
...aliyunSecret,
|
|
} as AliyunAccess;
|
|
}
|
|
}
|