feat: implement comprehensive map editing system with advanced geometry tools, replay management, and project session state modules.
Build and Release / release (push) Successful in 55s

This commit is contained in:
taDuc
2026-06-11 22:05:18 +07:00
parent 0d6599015b
commit 5a8dfc4b50
180 changed files with 43408 additions and 119 deletions
+9
View File
@@ -0,0 +1,9 @@
export interface ChatbotPayload {
project_id?: string;
question: string;
}
export interface ChatbotResponse {
status: boolean;
data: string;
}