12 lines
212 B
Go
12 lines
212 B
Go
package onvif
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"onvif-agent/response"
|
|
"onvif-agent/service/onvif"
|
|
)
|
|
|
|
func GetNotifications(c *gin.Context) {
|
|
response.NewResponse().WithData(onvif.Notifications).Send(c)
|
|
}
|