Upload slot info endpoint

This commit is contained in:
simon987
2019-03-24 18:32:29 -04:00
parent 290c67d3f6
commit 22ef1a44ad
4 changed files with 56 additions and 0 deletions

View File

@@ -11,6 +11,10 @@ type GenericResponse struct {
Message string `json:"message,omitempty"`
}
type GetUploadSlotResponse struct {
UploadSlot `json:"upload_slot"`
}
type AllocateUploadSlotRequest struct {
Token string `json:"token"`
MaxSize int64 `json:"max_size"`