|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package git
|
|
|
|
const fileSizeLimit int64 = 16 * 1024 // 16 KiB
|
|
const bigFileSize int64 = 1024 * 1024 // 1 MiB
|