mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-05 19:24:39 +00:00
18 lines
410 B
TypeScript
18 lines
410 B
TypeScript
import type { Plugin } from '../../core/types';
|
|
import { ThemeManager } from './theme-manager';
|
|
|
|
const themesPlugin: Plugin = {
|
|
id: 'themes',
|
|
name: 'Themes',
|
|
description: 'Adds a theme selector to the settings page',
|
|
version: '1.0.0',
|
|
settings: {},
|
|
|
|
run: async (_) => {
|
|
const themeManager = ThemeManager.getInstance();
|
|
await themeManager.initialize();
|
|
}
|
|
};
|
|
|
|
export default themesPlugin;
|