rename imports

This commit is contained in:
cedricve
2021-06-04 21:51:49 +02:00
parent af24622015
commit 37d8a71395
21 changed files with 67 additions and 36 deletions

View File

@@ -12,10 +12,10 @@ import (
"github.com/beevik/etree"
"github.com/gin-gonic/gin"
"github.com/use-go/onvif"
"github.com/use-go/onvif/gosoap"
"github.com/use-go/onvif/networking"
wsdiscovery "github.com/use-go/onvif/ws-discovery"
"github.com/kerberos-io/onvif"
"github.com/kerberos-io/onvif/gosoap"
"github.com/kerberos-io/onvif/networking"
wsdiscovery "github.com/kerberos-io/onvif/ws-discovery"
)
func RunApi() {

View File

@@ -3,9 +3,9 @@ package api
import (
"errors"
"github.com/use-go/onvif/device"
"github.com/use-go/onvif/media"
"github.com/use-go/onvif/ptz"
"github.com/kerberos-io/onvif/device"
"github.com/kerberos-io/onvif/media"
"github.com/kerberos-io/onvif/ptz"
)
func getPTZStructByName(name string) (interface{}, error) {