mirror of
https://github.com/go-gitea/gitea.git
synced 2025-08-22 08:34:05 +09: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")
|
|
}
|