fix: fix some displays and features

This commit is contained in:
2026-06-06 17:06:45 +02:00
parent 2332b7f815
commit 3be55795a6
31 changed files with 3118 additions and 30 deletions

View File

@ -19,6 +19,7 @@ import { TauriTerminalGateway } from "./terminal";
import { TauriLayoutGateway } from "./layout";
import { TauriProfileGateway } from "./profile";
import { TauriTemplateGateway } from "./template";
import { TauriSkillGateway } from "./skill";
import { TauriGitGateway } from "./git";
function notImplemented(what: string): never {
@ -47,6 +48,7 @@ export function createTauriGateways(): Gateways {
remote: new TauriRemoteGateway(),
profile: new TauriProfileGateway(),
template: new TauriTemplateGateway(),
skill: new TauriSkillGateway(),
};
}
@ -58,5 +60,6 @@ export {
TauriLayoutGateway,
TauriProfileGateway,
TauriTemplateGateway,
TauriSkillGateway,
TauriGitGateway,
};