filebrowser/settings/tus.go
2023-07-27 08:23:45 +02:00

12 lines
284 B
Go

package settings
const DefaultTusChunkSize = 20 * 1024 * 1024 // 20MB
const DefaultTusRetryCount = 3
// Tus contains the tus.io settings of the app.
type Tus struct {
Enabled bool `json:"enabled"`
ChunkSize uint64 `json:"chunkSize"`
RetryCount uint16 `json:"retryCount"`
}