API: init op_key, improve seralisation & signature typing #1622

Merged
clan-bot merged 6 commits from hsjobeki/clan-core:hsjobeki-main into main 2024-06-15 09:38:29 +00:00
Showing only changes of commit af19950dfa - Show all commits

View File

@ -7,6 +7,12 @@ import { Toaster } from "solid-toast";
// Global state
const [route, setRoute] = createSignal<Route>("machines");
const [currClanURI, setCurrClanURI] = createSignal<string>(
"/home/johannes/1_clans/myclan"
);
export { currClanURI, setCurrClanURI };
export { route, setRoute };
const App: Component = () => {