피드백 API
POST /api/feedback
사용자 피드백을 제출합니다.
요청
interface FeedbackRequest {
type: "suggestion" | "bug" | "other";
message: string;
email?: string;
}
POST /api/feedback
사용자 피드백을 제출합니다.
interface FeedbackRequest {
type: "suggestion" | "bug" | "other";
message: string;
email?: string;
}