mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-13 11:21:46 +00:00
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: JellyBrick <shlee1503@naver.com> Co-authored-by: qiye45 <qiye45@users.noreply.github.com>
12 lines
211 B
TypeScript
12 lines
211 B
TypeScript
export interface AuthProxyConfig {
|
|
enabled: boolean;
|
|
hostname: string;
|
|
port: number;
|
|
}
|
|
|
|
export const defaultAuthProxyConfig: AuthProxyConfig = {
|
|
enabled: false,
|
|
hostname: '127.0.0.1',
|
|
port: 4545,
|
|
};
|