SettingsBase contains base settings logic that other settings data types can extend.
| 78 | |
| 79 | // SettingsBase contains base settings logic that other settings data types can extend. |
| 80 | type SettingsBase struct { |
| 81 | |
| 82 | // Name is the name of the settings. |
| 83 | Name string `display:"-" save:"-"` |
| 84 | |
| 85 | // File is the full filename/filepath at which the settings are stored. |
| 86 | File string `display:"-" save:"-"` |
| 87 | } |
| 88 | |
| 89 | // Label returns the label text for the settings. |
| 90 | func (sb *SettingsBase) Label() string { |
nothing calls this directly
no outgoing calls
no test coverage detected