mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
10 lines
380 B
TypeScript
10 lines
380 B
TypeScript
import { ECommon_Services } from '../../../common/types';
|
|
import IServer_Common_RPC_File from "../../common/rpc/api/file";
|
|
import { DRPCSend } from "../../common/rpc/rpc";
|
|
class RpcFileApi implements IServer_Common_RPC_File {
|
|
@DRPCSend(ECommon_Services.File)
|
|
async getPaths(fileIds: string[]): Promise<string[]> {
|
|
return null;
|
|
}
|
|
}
|
|
export default new RpcFileApi |