feat(feedback): add problem reporting flow

This commit is contained in:
2026-07-16 18:30:34 +08:00
parent 4981de9b18
commit 37f45f0736
34 changed files with 1866 additions and 4 deletions
+1
View File
@@ -0,0 +1 @@
export * from "./submit_feedback";
+12
View File
@@ -0,0 +1,12 @@
import type {
FeedbackSubmitResponse,
SubmitFeedbackInput,
} from "@/data/dto/feedback";
import { getFeedbackRepository } from "@/data/repositories";
import type { Result } from "@/utils/result";
export function submitFeedback(
input: SubmitFeedbackInput,
): Promise<Result<FeedbackSubmitResponse>> {
return getFeedbackRepository().submit(input);
}