mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-06 18:12:51 +00:00
7 lines
151 B
JavaScript
7 lines
151 B
JavaScript
import {redirect} from "@sveltejs/kit"
|
|
|
|
/** @type {import("./$types").PageLoad} */
|
|
export function load() {
|
|
throw redirect(302, "/config/chords/")
|
|
}
|