cli/entity/plugin.go
Gregory Schier 374cdcac08
Add variables get|set|delete subcommands (#82)
* Checkpointing after initial refactor

* Add variables set/get/delete subcommands

- Consolidated some formatting
- Added `design` command (hidden)

* Address PR comments
2021-04-01 15:34:51 -07:00

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
}