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)
|
| }
|
|