mirror of
https://github.com/railwayapp/cli
synced 2026-04-21 22:17:25 +00:00
* Checkpointing after initial refactor * Add variables set/get/delete subcommands - Consolidated some formatting - Added `design` command (hidden) * Address PR comments
15 lines
258 B
Go
15 lines
258 B
Go
package entity
|
|
|
|
type PluginList struct {
|
|
Plugins []*Plugin `json:"plugins,omitempty"`
|
|
}
|
|
|
|
type Plugin struct {
|
|
ID string `json:"id,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
}
|
|
|
|
type CreatePluginRequest struct {
|
|
ProjectID string
|
|
Plugin string
|
|
}
|