mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-08-03 22:58:44 +00:00
* add flag to allow the user disable the autodiscover * add global config and doc * feat: Implement autodiscover.mode * fix: Minor doc fixes * fix: Small fixes to docs/indent/tests * fix: Line length, quoting, function comments * fix: Add a few more tests and remove newlines * fix: Always camel case never snake --------- Co-authored-by: Marcelo Medeiros <m.medeiros@carepay.com> Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> Co-authored-by: PePe Amengual <jose.amengual@gmail.com>
15 lines
296 B
Go
15 lines
296 B
Go
package valid
|
|
|
|
// AutoDiscoverMode enum
|
|
type AutoDiscoverMode string
|
|
|
|
const (
|
|
AutoDiscoverEnabledMode AutoDiscoverMode = "enabled"
|
|
AutoDiscoverDisabledMode AutoDiscoverMode = "disabled"
|
|
AutoDiscoverAutoMode AutoDiscoverMode = "auto"
|
|
)
|
|
|
|
type AutoDiscover struct {
|
|
Mode AutoDiscoverMode
|
|
}
|