mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
a0995d1b30
GitOrigin-RevId: 5a1d9cb772ac62603f2543bfe6c01a95c0a035c6
22 lines
304 B
Go
22 lines
304 B
Go
package settings
|
|
|
|
type Setting struct {
|
|
name string
|
|
defaultValue string
|
|
}
|
|
|
|
var Settings = []Setting{
|
|
{
|
|
name: "migration_mode",
|
|
defaultValue: "true",
|
|
},
|
|
}
|
|
|
|
func (s *Setting) GetName() string {
|
|
return s.name
|
|
}
|
|
|
|
func (s *Setting) GetDefaultValue() string {
|
|
return s.defaultValue
|
|
}
|