12 lines
283 B
Go
12 lines
283 B
Go
package settings
|
|
|
|
const DefaultTusChunkSize = 5 * 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"`
|
|
}
|