mirror of
https://github.com/thegeeklab/wp-gitea-release.git
synced 2024-11-09 17:30:39 +00:00
11 lines
297 B
Go
11 lines
297 B
Go
package main
|
|
|
|
// Params are the parameters that the GitHub Release plugin can parse.
|
|
type Params struct {
|
|
BaseURL string `json:"base_url"`
|
|
UploadURL string `json:"upload_url"`
|
|
APIKey string `json:"api_key"`
|
|
Files []string `json:"files"`
|
|
Checksums []string `json:"checksums"`
|
|
}
|