9 lines
429 B
TypeScript
9 lines
429 B
TypeScript
// Phase 0 placeholder. The desktop client is a thin Tauri shell wrapping the
|
|
// @altricade/web build (macOS + Windows), built in Phase 7. No separate UI —
|
|
// it loads the same web app, so it inherits web's FSD structure, theming, and
|
|
// offline-first behavior.
|
|
|
|
import { CORE_VERSION } from '@altricade/core';
|
|
|
|
export const desktopPlaceholder = (): string =>
|
|
`@altricade/desktop (Tauri shell) stub on core ${CORE_VERSION}`;
|