mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
9 lines
224 B
Go
9 lines
224 B
Go
|
package settings
|
||
|
|
||
|
// Branding contains the branding settings of the app.
|
||
|
type Branding struct {
|
||
|
Name string `json:"name"`
|
||
|
DisableExternal bool `json:"disableExternal"`
|
||
|
Files string `json:"files"`
|
||
|
}
|