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