You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package repo
-
- import (
- "code.gitea.io/gitea/modules/context"
- routeRepo "code.gitea.io/gitea/routers/repo"
- )
-
- func GetSuccessChunks(ctx *context.APIContext) {
- routeRepo.GetSuccessChunks(ctx.Context)
- }
-
- func NewMultipart(ctx *context.APIContext) {
- routeRepo.NewMultipart(ctx.Context)
- }
- func GetMultipartUploadUrl(ctx *context.APIContext) {
- routeRepo.GetMultipartUploadUrl(ctx.Context)
- }
-
- func CompleteMultipart(ctx *context.APIContext) {
- routeRepo.CompleteMultipart(ctx.Context)
-
- }
- func GetAttachment(ctx *context.APIContext) {
- routeRepo.GetAttachment(ctx.Context)
- }
|