You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package main
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// HTTPAPICameraManagement 摄像头管理页面
|
|
func HTTPAPICameraManagement(c *gin.Context) {
|
|
c.HTML(http.StatusOK, "cameras.tmpl", gin.H{
|
|
"title": "摄像头管理",
|
|
})
|
|
}
|