mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2026-07-29 07:23:38 -04:00
11 lines
374 B
Go
11 lines
374 B
Go
package plugin
|
|
|
|
const KeyActivation = "activation"
|
|
|
|
// revive:disable:line-length-limit
|
|
//go:generate go run github.com/abice/go-enum --marshal --names --nocomments --sql --sqlnullstr --values -t ../../internal/gql/enums.gql.tmpl -f activation.go
|
|
|
|
// Activation represents the activation mode for a plugin.
|
|
/* ENUM(enabled, disabled, auto, always) */
|
|
type Activation string
|