2015-12-23 14:18:22 +00:00
|
|
|
package main
|
|
|
|
|
2016-01-12 04:33:03 +00:00
|
|
|
// Params are the parameters that the GitHub Release plugin can parse.
|
2015-12-23 14:18:22 +00:00
|
|
|
type Params struct {
|
2016-01-12 04:33:03 +00:00
|
|
|
BaseURL string `json:"base_url"`
|
|
|
|
UploadURL string `json:"upload_url"`
|
2015-12-23 14:18:22 +00:00
|
|
|
APIKey string `json:"api_key"`
|
|
|
|
Files []string `json:"files"`
|
2016-01-15 16:46:00 +00:00
|
|
|
Checksums []string `json:"checksums"`
|
2015-12-23 14:18:22 +00:00
|
|
|
}
|