2020-02-11 09:34:17 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-02-11 09:34:17 +00:00
|
|
|
|
|
|
|
package git
|
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
const (
|
|
|
|
fileSizeLimit int64 = 16 * 1024 // 16 KiB
|
|
|
|
bigFileSize int64 = 1024 * 1024 // 1 MiB
|
|
|
|
)
|