|
1234567891011121314151617181920212223 |
- package repo
-
- import (
- "code.gitea.io/gitea/modules/base"
- "code.gitea.io/gitea/modules/context"
- )
-
- const (
- tplCloudBrainIndex base.TplName = "repo/cloudbrain/index"
- tplCloudBrainNew base.TplName = "repo/cloudbrain/new"
- )
-
- func CloudBrainIndex(ctx *context.Context) {
- ctx.Data["PageIsViewCloudBrain"] = true
-
- ctx.HTML(200, tplCloudBrainIndex)
- }
-
- func CloudBrainNew(ctx *context.Context) {
- ctx.Data["PageIsViewCloudBrain"] = true
-
- ctx.HTML(200, tplCloudBrainNew)
- }
|