view logs

This commit is contained in:
wxiaoguang
2022-09-30 00:06:59 +08:00
committed by Jason Song
parent 5f0cb6b9e5
commit 4f2330623e
6 changed files with 336 additions and 1 deletions

View File

@ -0,0 +1,11 @@
package dev
import (
"net/http"
"code.gitea.io/gitea/modules/context"
)
func BuildView(ctx *context.Context) {
ctx.HTML(http.StatusOK, "dev/buildview")
}