Skip to content

Commit

Permalink
Update types.go
Browse files Browse the repository at this point in the history
  • Loading branch information
zengge99 authored Jun 17, 2024
1 parent fa78e50 commit d1fbb9a
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion drivers/quark_share/types.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package quarkShare
package quarkShare

import (
"time"
Expand Down Expand Up @@ -96,6 +96,17 @@ type TaskResp struct {
} `json:"data"`
}

type VideoList struct {
Url string `json:"url"`
}

type PreviewResp struct {
Resp
Data struct {
VideoListData []VideoList `json:"video_list"`
} `json:"data"`
}

type DownResp struct {
Resp
Data []struct {
Expand Down Expand Up @@ -180,3 +191,5 @@ type UpAuthResp struct {
Metadata struct {
} `json:"metadata"`
}


0 comments on commit d1fbb9a

Please sign in to comment.