mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-12 11:01:45 +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>
17 lines
453 B
TypeScript
17 lines
453 B
TypeScript
import { createPlugin } from '@/utils';
|
|
import { t } from '@/i18n';
|
|
|
|
import { defaultAuthProxyConfig } from './config';
|
|
import { onMenu } from './menu';
|
|
import { backend } from './backend';
|
|
|
|
export default createPlugin({
|
|
name: () => t('plugins.auth-proxy-adapter.name'),
|
|
description: () => t('plugins.auth-proxy-adapter.description'),
|
|
restartNeeded: true,
|
|
config: defaultAuthProxyConfig,
|
|
addedVersion: '3.10.X',
|
|
menu: onMenu,
|
|
backend,
|
|
});
|