mirror of
https://github.com/go-gitea/gitea
synced 2025-09-28 03:28:13 +00:00
12 lines
160 B
Go
12 lines
160 B
Go
package dev
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
)
|
|
|
|
func BuildView(ctx *context.Context) {
|
|
ctx.HTML(http.StatusOK, "dev/buildview")
|
|
}
|