aboutsummaryrefslogtreecommitdiffstats
path: root/modules/git/repo_language_stats.go
blob: daeb4b591f5bf6c64ab9d723bd94dc928b5f622b (plain)
1
2
3
4
5
6
7
8
9
10
// 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
	bigFileSize   int64 = 1024 * 1024 // 1 MiB
)