mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 18:41:47 +00:00
Co-authored-by: JellyBrick <shlee1503@naver.com> Co-authored-by: Angelos Bouklis <angelbouklis.official@gmail.com> Co-authored-by: Angelos Bouklis <me@arjix.dev> Co-authored-by: Angelos Bouklis <53124886+ArjixWasTaken@users.noreply.github.com>
18 lines
438 B
TypeScript
18 lines
438 B
TypeScript
import { createPlugin } from '@/utils';
|
|
import { t } from '@/i18n';
|
|
|
|
import { defaultAPIServerConfig } from './config';
|
|
import { onMenu } from './menu';
|
|
import { backend } from './backend';
|
|
|
|
export default createPlugin({
|
|
name: () => t('plugins.api-server.name'),
|
|
description: () => t('plugins.api-server.description'),
|
|
restartNeeded: false,
|
|
config: defaultAPIServerConfig,
|
|
addedVersion: '3.6.X',
|
|
menu: onMenu,
|
|
|
|
backend,
|
|
});
|