2020-02-11 15:04:17 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2020-02-11 15:04:17 +05:30
|
|
|
|
|
|
|
package git
|
|
|
|
|
2022-01-20 23:16:10 +05:30
|
|
|
const (
|
|
|
|
fileSizeLimit int64 = 16 * 1024 // 16 KiB
|
|
|
|
bigFileSize int64 = 1024 * 1024 // 1 MiB
|
|
|
|
)
|