mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 16:24:25 +00:00
54e9ee37a7
* gofumpt -w -l . * gofumpt -w -l -extra . * Add linter * manual fix * change make fmt
11 lines
275 B
Go
11 lines
275 B
Go
// 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
|
|
)
|