2020-02-11 10:34:17 +01:00
|
|
|
// 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
|
|
|
|
|
2020-06-19 10:07:56 +02:00
|
|
|
const fileSizeLimit int64 = 16 * 1024 // 16 KiB
|
|
|
|
const bigFileSize int64 = 1024 * 1024 // 1 MiB
|