mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
This plugin will allow users to override the builder used for their application, enabling users to use custom builders if desired.
14 lines
322 B
Go
14 lines
322 B
Go
package builder
|
|
|
|
var (
|
|
// DefaultProperties is a map of all valid network properties with corresponding default property values
|
|
DefaultProperties = map[string]string{
|
|
"selected": "",
|
|
}
|
|
|
|
// GlobalProperties is a map of all valid global network properties
|
|
GlobalProperties = map[string]bool{
|
|
"selected": true,
|
|
}
|
|
)
|