feat: Create tasks on Gibwork

This commit is contained in:
thatsmeadarsh
2024-12-25 09:16:44 +05:30
parent 2753794342
commit bb629f287f
5 changed files with 158 additions and 2 deletions

View File

@@ -85,3 +85,9 @@ export interface PythFetchPriceResponse {
message?: string;
code?: string;
}
export interface GibworkCreateTaskReponse {
status: "success" | "error";
taskId?: string | undefined;
signature?: string | undefined;
}