sunty
2020-02-11 5cd5f2dc4bdcb28203446ba7a7769a2933e832f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package controllers
 
import (
    "basic.com/gb28181api.git"
    "github.com/gin-gonic/gin"
)
 
type Gb28181CloudController struct {
 
}
 
func (gb *Gb28181CloudController) Left(c *gin.Context) {
    cameraId := c.Query("cameraId")
 
    var gbApi gb28181api.Gb28181Api
    gbApi.SetCameraPtz(cameraId,"",3)
 
}