Bilibili-Evolved/registry/lib/plugins/video/download/aria2-output/rpc-profiles.ts
2021-10-26 13:19:37 +08:00

19 lines
316 B
TypeScript

export interface Aria2RpcProfile {
name: string
secretKey: string
dir: string
host: string
port: string
method: string
other: string
}
export const defaultProfile: Aria2RpcProfile = {
name: '未命名',
secretKey: '',
dir: '',
host: '127.0.0.1',
port: '6800',
method: 'get',
other: '',
}