- Added plugin base and loader for backend extensibility - Implemented application settings management with config persistence - Created Svelte-based frontend with Dashboard and Settings pages - Added API routes for plugins, tasks, and settings - Updated documentation and specifications - Improved project structure and developer tools
11 lines
149 B
Svelte
Executable File
11 lines
149 B
Svelte
Executable File
<script>
|
|
let count = $state(0)
|
|
const increment = () => {
|
|
count += 1
|
|
}
|
|
</script>
|
|
|
|
<button onclick={increment}>
|
|
count is {count}
|
|
</button>
|