Fix Settings properties path
This commit is contained in:
parent
2cd4d064d3
commit
a165df46fa
1 changed files with 3 additions and 3 deletions
|
@ -18,9 +18,9 @@ const (
|
|||
SettingsSaveHostname = SettingsInterface + ".SaveHostname"
|
||||
|
||||
/* Properties */
|
||||
SettingsPropertyConnections = SettingsInterface + "Connections" // readable ao
|
||||
SettingsPropertyHostname = SettingsInterface + "Hostname" // readable s
|
||||
SettingsPropertyCanModify = SettingsInterface + "CanModify" // readable b
|
||||
SettingsPropertyConnections = SettingsInterface + ".Connections" // readable ao
|
||||
SettingsPropertyHostname = SettingsInterface + ".Hostname" // readable s
|
||||
SettingsPropertyCanModify = SettingsInterface + ".CanModify" // readable b
|
||||
)
|
||||
|
||||
type Settings interface {
|
||||
|
|
Reference in a new issue