Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FileRequest ¶
type FileRequest struct {
Name string `mapstructure:"name"`
Files []*multipart.FileHeader `mapstructure:"file"`
OneMoreFile *multipart.FileHeader `mapstructure:"one_more_file"`
}
type FileResponse ¶
type FileResponse struct {
Name string `mapstructure:"name" json:"name"`
Files []*multipart.FileHeader `mapstructure:"file[]" json:"files"`
OneMoreFile *multipart.FileHeader `mapstructure:"one_more_file" json:"one_more_file"`
}
type GetRandomNumberRequest ¶
type GetRandomNumberResponse ¶
type GetRandomNumberResponse struct {
Number int `json:"number"`
}
type TestRequest ¶
type TestResponse ¶
type TestResponse struct {
ID string `json:"id"`
}
Click to show internal directories.
Click to hide internal directories.