mirror of
https://github.com/minoplhy/chibisafe-netproxy.git
synced 2025-04-05 01:47:59 +00:00
26 lines
568 B
Go
26 lines
568 B
Go
|
package handler
|
||
|
|
||
|
type UploadPostMeta struct {
|
||
|
Name string `json:"name"`
|
||
|
FileSize int64 `json:"size"`
|
||
|
ContentType string `json:"contentType"`
|
||
|
}
|
||
|
|
||
|
type UploadResponseMeta struct {
|
||
|
URL string `json:"url"`
|
||
|
Identifier string `json:"identifier"`
|
||
|
PublicURL string `json:"publicUrl"`
|
||
|
}
|
||
|
|
||
|
type UploadProcessMeta struct {
|
||
|
Name string `json:"name"`
|
||
|
Identifier string `json:"identifier"`
|
||
|
ContentType string `json:"type"`
|
||
|
}
|
||
|
|
||
|
type UploadProcessResponseMeta struct {
|
||
|
Name string `json:"name"`
|
||
|
UUID string `json:"uuid"`
|
||
|
URL string `json:"url"`
|
||
|
}
|