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/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)
- }
|