diff --git a/main.go b/main.go index d88336a..2fcef99 100644 --- a/main.go +++ b/main.go @@ -12,3 +12,9 @@ type OAuthResponse struct { AppID string `json:"appId"` SecretKey string `json:"secretKey"` } + +type File struct { + Name string `validate:"required"` + User uuid.UUID `validate:"required"` + Bytes []byte // Only used in write operations +}