diff --git a/filebrowser.go b/filebrowser.go index 1b23e24a..7b6f8ec0 100644 --- a/filebrowser.go +++ b/filebrowser.go @@ -556,3 +556,13 @@ func GenerateRandomBytes(n int) ([]byte, error) { return b, nil } + +type Branding struct { + Name string + ExternalLinks bool +} + +var DefaultBranding = Branding{ + Name: "File Browser", + ExternalLinks: true, +}