Initial commit with CC BY-NC-ND 4.0 license

This commit is contained in:
2026-02-13 09:59:19 +08:00
commit 2c31e1cbc8
140 changed files with 44625 additions and 0 deletions

11
PresetSettings/index.js Normal file
View File

@@ -0,0 +1,11 @@
import * as state from './prese_state.js';
import * as ui from './prese_ui.js';
// Public API for other modules
export { getPresetPrompts, getMixedOrder } from './prese_state.js';
// Initialize the application
$(document).ready(function() {
state.loadPresets();
ui.addPresetSettingsButton();
});