multica/packages/sdk/src/actions/hello.ts
Naiyuan Qing 84fe9d99f5 Add monorepo setup with Turborepo and Web client
- Add pnpm workspace and Turborepo configuration
- Extract Gateway SDK to packages/sdk as independent package
- Add Next.js + shadcn Web client in apps/web
- Update root package.json with turbo scripts

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 16:33:35 +08:00

14 lines
326 B
TypeScript

/** Hello Action - 测试用的问候消息 */
export const HelloAction = "hello" as const;
export const HelloResponseAction = "hello_response" as const;
/** Hello 请求 payload */
export interface HelloPayload {
greeting: string;
}
/** Hello 响应 payload */
export interface HelloResponsePayload {
reply: string;
}