mirror of
https://github.com/certd/certd.git
synced 2026-05-16 05:07:32 +08:00
11 lines
274 B
TypeScript
11 lines
274 B
TypeScript
import { IAccess, IAccessService } from "../../src";
|
|
// @ts-ignore
|
|
import { aliyunSecret } from "../user.secret";
|
|
export class AccessServiceTest implements IAccessService {
|
|
async getById(id: any): Promise<IAccess> {
|
|
return {
|
|
...aliyunSecret,
|
|
} as any;
|
|
}
|
|
}
|