mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
11 lines
248 B
Go
11 lines
248 B
Go
package settings
|
|
|
|
const DefaultTusChunkSize = 10 * 1024 * 1024 // 10MB
|
|
const DefaultTusRetryCount = 5
|
|
|
|
// Tus contains the tus.io settings of the app.
|
|
type Tus struct {
|
|
ChunkSize uint64 `json:"chunkSize"`
|
|
RetryCount uint16 `json:"retryCount"`
|
|
}
|