From ea382eb9dc6163f78022971813851ec5fe16dbe7 Mon Sep 17 00:00:00 2001 From: ProtoTess <32490978+0x524A@users.noreply.github.com> Date: Wed, 12 Nov 2025 17:45:04 +0000 Subject: [PATCH] chore: update repository references from go-onvif to onvif-go --- .github/CONTRIBUTING.md | 8 +++--- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .github/ISSUE_TEMPLATE/config.yml | 6 ++--- BUILDING.md | 8 +++--- CHANGELOG.md | 2 +- CONTRIBUTING.md | 2 +- IMPLEMENTATION_SUMMARY.md | 2 +- Makefile | 4 +-- PROJECT_SUMMARY.md | 4 +-- QUICKSTART.md | 12 ++++----- README.md | 26 +++++++++---------- build-release.sh | 2 +- cmd/onvif-cli/main.go | 4 +-- cmd/onvif-quick/main.go | 4 +-- cmd/onvif-server/main.go | 2 +- demo.sh | 2 +- device.go | 2 +- examples/complete-demo/main.go | 4 +-- examples/comprehensive-test/main.go | 2 +- examples/device-info/main.go | 2 +- examples/discover-and-test/main.go | 4 +-- examples/discover-real-camera/main.go | 2 +- examples/discovery/main.go | 2 +- examples/imaging-settings/main.go | 2 +- examples/onvif-server/main.go | 2 +- examples/ptz-control/main.go | 2 +- examples/simple-server/main.go | 2 +- examples/test-new-features/main.go | 2 +- examples/test-real-camera/main.go | 2 +- examples/test-server/main.go | 4 +-- go.mod | 2 +- imaging.go | 2 +- media.go | 2 +- ptz.go | 2 +- server/IMPLEMENTATION_SUMMARY.md | 2 +- server/README.md | 10 +++---- server/device.go | 2 +- server/server.go | 2 +- server/soap/handler.go | 2 +- server/types.go | 2 +- test/test-server.go | 2 +- ...lexidome_indoor_5100i_ir_8.71.0066_test.go | 4 +-- .../captures/enhanced_device_features_test.go | 2 +- 43 files changed, 80 insertions(+), 80 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index a6c656d..a03de20 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -96,7 +96,7 @@ Help us maintain compatibility information: ### Clone and Build ```bash -git clone https://github.com/0x524A/go-onvif.git +git clone https://github.com/0x524A/onvif-go.git cd go-onvif go build ./... ``` @@ -262,9 +262,9 @@ go-onvif/ ## Getting Help -- 💬 [GitHub Discussions](https://github.com/0x524A/go-onvif/discussions) - Ask questions -- 🐛 [GitHub Issues](https://github.com/0x524A/go-onvif/issues) - Report bugs -- 📖 [Documentation](https://pkg.go.dev/github.com/0x524A/go-onvif) - Read the docs +- 💬 [GitHub Discussions](https://github.com/0x524A/onvif-go/discussions) - Ask questions +- 🐛 [GitHub Issues](https://github.com/0x524A/onvif-go/issues) - Report bugs +- 📖 [Documentation](https://pkg.go.dev/github.com/0x524A/onvif-go) - Read the docs ## License diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 84b474a..715af35 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -47,7 +47,7 @@ body: placeholder: | package main - import "github.com/0x524A/go-onvif" + import "github.com/0x524A/onvif-go" func main() { // Your code here diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 871434d..709397c 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,11 +1,11 @@ blank_issues_enabled: false contact_links: - name: 💬 Discussions - url: https://github.com/0x524A/go-onvif/discussions + url: https://github.com/0x524A/onvif-go/discussions about: Ask questions and discuss ideas with the community - name: 📖 Documentation - url: https://pkg.go.dev/github.com/0x524A/go-onvif + url: https://pkg.go.dev/github.com/0x524A/onvif-go about: Read the API documentation - name: 📚 Examples - url: https://github.com/0x524A/go-onvif/tree/main/examples + url: https://github.com/0x524A/onvif-go/tree/main/examples about: Browse code examples diff --git a/BUILDING.md b/BUILDING.md index ebee498..5838723 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -117,8 +117,8 @@ Docker images are automatically built for: Available at: ``` -ghcr.io/0x524a/go-onvif:latest -ghcr.io/0x524a/go-onvif:v1.0.0 +ghcr.io/0x524a/onvif-go:latest +ghcr.io/0x524a/onvif-go:v1.0.0 ``` ## Manual GitHub Release @@ -209,8 +209,8 @@ Users can verify downloads using checksums: ```bash # Download binary and checksum -wget https://github.com/0x524A/go-onvif/releases/download/v1.0.0/go-onvif-v1.0.0-linux-amd64.tar.gz -wget https://github.com/0x524A/go-onvif/releases/download/v1.0.0/checksums.txt +wget https://github.com/0x524A/onvif-go/releases/download/v1.0.0/onvif-go-v1.0.0-linux-amd64.tar.gz +wget https://github.com/0x524A/onvif-go/releases/download/v1.0.0/checksums.txt # Verify sha256sum -c checksums.txt --ignore-missing diff --git a/CHANGELOG.md b/CHANGELOG.md index d3bf457..0ae2049 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,4 +48,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Comprehensive documentation - README with usage guide -[Unreleased]: https://github.com/0x524A/go-onvif/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/0x524A/onvif-go/compare/v0.1.0...HEAD diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fa9c4a1..b50a429 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -45,7 +45,7 @@ git clone https://github.com/YOUR_USERNAME/go-onvif.git cd go-onvif # Add upstream remote -git remote add upstream https://github.com/0x524A/go-onvif.git +git remote add upstream https://github.com/0x524A/onvif-go.git # Create a branch git checkout -b feature/my-new-feature diff --git a/IMPLEMENTATION_SUMMARY.md b/IMPLEMENTATION_SUMMARY.md index 6290333..26a0204 100644 --- a/IMPLEMENTATION_SUMMARY.md +++ b/IMPLEMENTATION_SUMMARY.md @@ -85,7 +85,7 @@ We have successfully created a **comprehensive, production-ready Go ONVIF librar ### Basic Library Usage ```go -import "github.com/0x524A/go-onvif" +import "github.com/0x524A/onvif-go" client, err := onvif.NewClient( "http://192.168.1.100/onvif/device_service", diff --git a/Makefile b/Makefile index 2f5f108..b84dd5a 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Go ONVIF Library Makefile +# ONVIF GO Library Makefile .PHONY: all build test clean install deps lint fmt vet check examples cli docker @@ -181,7 +181,7 @@ release: build-all # Create Docker image docker: @echo "🐳 Building Docker image..." - docker build -t go-onvif:latest . + docker build -t onvif-go:latest . # Development setup dev-setup: diff --git a/PROJECT_SUMMARY.md b/PROJECT_SUMMARY.md index dee8f88..a7e439b 100644 --- a/PROJECT_SUMMARY.md +++ b/PROJECT_SUMMARY.md @@ -191,7 +191,7 @@ Tested/compatible with major brands: ## Usage Example ```go -import "github.com/0x524A/go-onvif" +import "github.com/0x524A/onvif-go" // Create client client, _ := onvif.NewClient( @@ -255,7 +255,7 @@ go-onvif/ ```bash # Install -go get github.com/0x524A/go-onvif +go get github.com/0x524A/onvif-go # Run discovery example cd examples/discovery diff --git a/QUICKSTART.md b/QUICKSTART.md index 8106ecd..c942be8 100644 --- a/QUICKSTART.md +++ b/QUICKSTART.md @@ -5,7 +5,7 @@ Get up and running with go-onvif in 5 minutes! ## Installation ```bash -go get github.com/0x524A/go-onvif +go get github.com/0x524A/onvif-go ``` ## Step 1: Discover Cameras @@ -20,7 +20,7 @@ import ( "fmt" "time" - "github.com/0x524A/go-onvif/discovery" + "github.com/0x524A/onvif-go/discovery" ) func main() { @@ -52,7 +52,7 @@ import ( "fmt" "time" - "github.com/0x524A/go-onvif" + "github.com/0x524A/onvif-go" ) func main() { @@ -178,7 +178,7 @@ import ( "log" "time" - "github.com/0x524A/go-onvif" + "github.com/0x524A/onvif-go" ) func main() { @@ -262,9 +262,9 @@ func main() { ## Next Steps 1. **Explore Examples**: Check out the `examples/` directory for more detailed use cases -2. **Read Documentation**: Visit [pkg.go.dev](https://pkg.go.dev/github.com/0x524A/go-onvif) +2. **Read Documentation**: Visit [pkg.go.dev](https://pkg.go.dev/github.com/0x524A/onvif-go) 3. **Review Architecture**: See [ARCHITECTURE.md](ARCHITECTURE.md) for design details -4. **Check Issues**: Look at [GitHub Issues](https://github.com/0x524A/go-onvif/issues) for known issues +4. **Check Issues**: Look at [GitHub Issues](https://github.com/0x524A/onvif-go/issues) for known issues ## Common Patterns diff --git a/README.md b/README.md index 1f8c737..6d48944 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -# go-onvif - ONVIF Client and Server Library for Go +# onvif-go - ONVIF Client and Server Library for Go -[![Go Reference](https://pkg.go.dev/badge/github.com/0x524A/go-onvif.svg)](https://pkg.go.dev/github.com/0x524A/go-onvif) -[![Go Report Card](https://goreportcard.com/badge/github.com/0x524A/go-onvif)](https://goreportcard.com/report/github.com/0x524A/go-onvif) -[![License](https://img.shields.io/github/license/0x524A/go-onvif)](LICENSE) -[![GitHub stars](https://img.shields.io/github/stars/0x524A/go-onvif)](https://github.com/0x524A/go-onvif/stargazers) -[![GitHub issues](https://img.shields.io/github/issues/0x524A/go-onvif)](https://github.com/0x524A/go-onvif/issues) +[![Go Reference](https://pkg.go.dev/badge/github.com/0x524A/onvif-go.svg)](https://pkg.go.dev/github.com/0x524A/onvif-go) +[![Go Report Card](https://goreportcard.com/badge/github.com/0x524A/onvif-go)](https://goreportcard.com/report/github.com/0x524A/onvif-go) +[![License](https://img.shields.io/github/license/0x524A/onvif-go)](LICENSE) +[![GitHub stars](https://img.shields.io/github/stars/0x524A/onvif-go)](https://github.com/0x524A/onvif-go/stargazers) +[![GitHub issues](https://img.shields.io/github/issues/0x524A/onvif-go)](https://github.com/0x524A/onvif-go/issues) > **Modern, high-performance Go library for ONVIF IP camera integration** - Control surveillance cameras, NVRs, and video devices with comprehensive ONVIF Profile S/T/G support. Includes both client and server implementations for complete ONVIF camera simulation and testing. @@ -71,7 +71,7 @@ ONVIF (Open Network Video Interface Forum) is an open industry standard for IP-b ## Installation ```bash -go get github.com/0x524A/go-onvif +go get github.com/0x524A/onvif-go ``` ## Quick Start @@ -87,7 +87,7 @@ import ( "log" "time" - "github.com/0x524A/go-onvif/discovery" + "github.com/0x524A/onvif-go/discovery" ) func main() { @@ -118,7 +118,7 @@ import ( "log" "time" - "github.com/0x524A/go-onvif" + "github.com/0x524A/onvif-go" ) func main() { @@ -319,7 +319,7 @@ import ( "context" "log" - "github.com/0x524A/go-onvif/server" + "github.com/0x524A/onvif-go/server" ) func main() { @@ -547,9 +547,9 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file ## Support -- 📖 [Documentation](https://pkg.go.dev/github.com/0x524A/go-onvif) -- 🐛 [Issue Tracker](https://github.com/0x524A/go-onvif/issues) -- 💬 [Discussions](https://github.com/0x524A/go-onvif/discussions) +- 📖 [Documentation](https://pkg.go.dev/github.com/0x524A/onvif-go) +- 🐛 [Issue Tracker](https://github.com/0x524A/onvif-go/issues) +- 💬 [Discussions](https://github.com/0x524A/onvif-go/discussions) - 🔒 [Security Policy](.github/SECURITY.md) ## Keywords diff --git a/build-release.sh b/build-release.sh index cfe410f..5491325 100755 --- a/build-release.sh +++ b/build-release.sh @@ -62,7 +62,7 @@ cd bin for platform in "${PLATFORMS[@]}"; do OS="${platform%/*}" ARCH="${platform#*/}" - ARCHIVE_NAME="go-onvif-${VERSION}-${OS}-${ARCH}" + ARCHIVE_NAME="onvif-go-${VERSION}-${OS}-${ARCH}" # Check if any binary exists for this platform if [ "$OS" = "windows" ]; then diff --git a/cmd/onvif-cli/main.go b/cmd/onvif-cli/main.go index 5634ef3..748f314 100644 --- a/cmd/onvif-cli/main.go +++ b/cmd/onvif-cli/main.go @@ -9,8 +9,8 @@ import ( "strings" "time" - "github.com/0x524A/go-onvif" - "github.com/0x524A/go-onvif/discovery" + "github.com/0x524A/onvif-go" + "github.com/0x524A/onvif-go/discovery" ) type CLI struct { diff --git a/cmd/onvif-quick/main.go b/cmd/onvif-quick/main.go index d596dc5..3208687 100644 --- a/cmd/onvif-quick/main.go +++ b/cmd/onvif-quick/main.go @@ -8,8 +8,8 @@ import ( "strings" "time" - "github.com/0x524A/go-onvif" - "github.com/0x524A/go-onvif/discovery" + "github.com/0x524A/onvif-go" + "github.com/0x524A/onvif-go/discovery" ) func main() { diff --git a/cmd/onvif-server/main.go b/cmd/onvif-server/main.go index decb1cd..a5cab1d 100644 --- a/cmd/onvif-server/main.go +++ b/cmd/onvif-server/main.go @@ -10,7 +10,7 @@ import ( "syscall" "time" - "github.com/0x524A/go-onvif/server" + "github.com/0x524A/onvif-go/server" ) var ( diff --git a/demo.sh b/demo.sh index daf761f..19f2ea0 100755 --- a/demo.sh +++ b/demo.sh @@ -43,7 +43,7 @@ import ( "fmt" "time" - "github.com/0x524A/go-onvif" + "github.com/0x524A/onvif-go" ) func main() { diff --git a/device.go b/device.go index 0d5b55e..16e764f 100644 --- a/device.go +++ b/device.go @@ -5,7 +5,7 @@ import ( "encoding/xml" "fmt" - "github.com/0x524A/go-onvif/soap" + "github.com/0x524A/onvif-go/soap" ) // Device service namespace diff --git a/examples/complete-demo/main.go b/examples/complete-demo/main.go index b55c5c9..f5d9899 100644 --- a/examples/complete-demo/main.go +++ b/examples/complete-demo/main.go @@ -6,8 +6,8 @@ import ( "log" "time" - "github.com/0x524A/go-onvif" - "github.com/0x524A/go-onvif/discovery" + "github.com/0x524A/onvif-go" + "github.com/0x524A/onvif-go/discovery" ) // This is a comprehensive demonstration of all go-onvif features diff --git a/examples/comprehensive-test/main.go b/examples/comprehensive-test/main.go index 3ed98e5..7be1fac 100644 --- a/examples/comprehensive-test/main.go +++ b/examples/comprehensive-test/main.go @@ -6,7 +6,7 @@ import ( "log" "time" - "github.com/0x524A/go-onvif" + "github.com/0x524A/onvif-go" ) func main() { diff --git a/examples/device-info/main.go b/examples/device-info/main.go index 3de263c..b2a8d30 100644 --- a/examples/device-info/main.go +++ b/examples/device-info/main.go @@ -6,7 +6,7 @@ import ( "log" "time" - "github.com/0x524A/go-onvif" + "github.com/0x524A/onvif-go" ) func main() { diff --git a/examples/discover-and-test/main.go b/examples/discover-and-test/main.go index 250247d..6f3cab0 100644 --- a/examples/discover-and-test/main.go +++ b/examples/discover-and-test/main.go @@ -6,8 +6,8 @@ import ( "log" "time" - "github.com/0x524A/go-onvif" - "github.com/0x524A/go-onvif/discovery" + "github.com/0x524A/onvif-go" + "github.com/0x524A/onvif-go/discovery" ) func main() { diff --git a/examples/discover-real-camera/main.go b/examples/discover-real-camera/main.go index a337a4d..94dba7d 100644 --- a/examples/discover-real-camera/main.go +++ b/examples/discover-real-camera/main.go @@ -6,7 +6,7 @@ import ( "log" "time" - "github.com/0x524A/go-onvif/discovery" + "github.com/0x524A/onvif-go/discovery" ) func main() { diff --git a/examples/discovery/main.go b/examples/discovery/main.go index d985c40..a3b8bad 100644 --- a/examples/discovery/main.go +++ b/examples/discovery/main.go @@ -6,7 +6,7 @@ import ( "log" "time" - "github.com/0x524A/go-onvif/discovery" + "github.com/0x524A/onvif-go/discovery" ) func main() { diff --git a/examples/imaging-settings/main.go b/examples/imaging-settings/main.go index 0cfe9ec..84cfcb9 100644 --- a/examples/imaging-settings/main.go +++ b/examples/imaging-settings/main.go @@ -6,7 +6,7 @@ import ( "log" "time" - "github.com/0x524A/go-onvif" + "github.com/0x524A/onvif-go" ) func main() { diff --git a/examples/onvif-server/main.go b/examples/onvif-server/main.go index da0bec7..a7ab2d3 100644 --- a/examples/onvif-server/main.go +++ b/examples/onvif-server/main.go @@ -9,7 +9,7 @@ import ( "syscall" "time" - "github.com/0x524A/go-onvif/server" + "github.com/0x524A/onvif-go/server" ) func main() { diff --git a/examples/ptz-control/main.go b/examples/ptz-control/main.go index c6e1f35..f9a577c 100644 --- a/examples/ptz-control/main.go +++ b/examples/ptz-control/main.go @@ -6,7 +6,7 @@ import ( "log" "time" - "github.com/0x524A/go-onvif" + "github.com/0x524A/onvif-go" ) func main() { diff --git a/examples/simple-server/main.go b/examples/simple-server/main.go index 4e8efd5..dcf55a7 100644 --- a/examples/simple-server/main.go +++ b/examples/simple-server/main.go @@ -5,7 +5,7 @@ import ( "fmt" "log" - "github.com/0x524A/go-onvif/server" + "github.com/0x524A/onvif-go/server" ) func main() { diff --git a/examples/test-new-features/main.go b/examples/test-new-features/main.go index d72e95b..cac360c 100644 --- a/examples/test-new-features/main.go +++ b/examples/test-new-features/main.go @@ -9,7 +9,7 @@ import ( "os" "time" - "github.com/0x524A/go-onvif" + "github.com/0x524A/onvif-go" ) var ( diff --git a/examples/test-real-camera/main.go b/examples/test-real-camera/main.go index cbafd89..fe138bd 100644 --- a/examples/test-real-camera/main.go +++ b/examples/test-real-camera/main.go @@ -6,7 +6,7 @@ import ( "log" "time" - "github.com/0x524A/go-onvif" + "github.com/0x524A/onvif-go" ) func main() { diff --git a/examples/test-server/main.go b/examples/test-server/main.go index 872823e..a18b314 100644 --- a/examples/test-server/main.go +++ b/examples/test-server/main.go @@ -6,8 +6,8 @@ import ( "log" "time" - "github.com/0x524A/go-onvif" - "github.com/0x524A/go-onvif/server" + "github.com/0x524A/onvif-go" + "github.com/0x524A/onvif-go/server" ) func main() { diff --git a/go.mod b/go.mod index 2b80cc9..50678f8 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/0x524A/go-onvif +module github.com/0x524A/onvif-go go 1.21 diff --git a/imaging.go b/imaging.go index 06f32a2..a8777b3 100644 --- a/imaging.go +++ b/imaging.go @@ -5,7 +5,7 @@ import ( "encoding/xml" "fmt" - "github.com/0x524A/go-onvif/soap" + "github.com/0x524A/onvif-go/soap" ) // Imaging service namespace diff --git a/media.go b/media.go index d7b1e6c..a62f266 100644 --- a/media.go +++ b/media.go @@ -5,7 +5,7 @@ import ( "encoding/xml" "fmt" - "github.com/0x524A/go-onvif/soap" + "github.com/0x524A/onvif-go/soap" ) // Media service namespace diff --git a/ptz.go b/ptz.go index 62cb54e..48db29e 100644 --- a/ptz.go +++ b/ptz.go @@ -5,7 +5,7 @@ import ( "encoding/xml" "fmt" - "github.com/0x524A/go-onvif/soap" + "github.com/0x524A/onvif-go/soap" ) // PTZ service namespace diff --git a/server/IMPLEMENTATION_SUMMARY.md b/server/IMPLEMENTATION_SUMMARY.md index 450a1a6..a20c3c1 100644 --- a/server/IMPLEMENTATION_SUMMARY.md +++ b/server/IMPLEMENTATION_SUMMARY.md @@ -213,7 +213,7 @@ package main import ( "context" - "github.com/0x524A/go-onvif/server" + "github.com/0x524A/onvif-go/server" ) func main() { diff --git a/server/README.md b/server/README.md index 072d0f4..7bd6430 100644 --- a/server/README.md +++ b/server/README.md @@ -41,7 +41,7 @@ A complete ONVIF-compliant server implementation that simulates multi-lens IP ca ```bash # Clone the repository (if not already done) -git clone https://github.com/0x524A/go-onvif +git clone https://github.com/0x524A/onvif-go cd go-onvif # Build the server CLI @@ -128,7 +128,7 @@ import ( "log" "time" - "github.com/0x524A/go-onvif/server" + "github.com/0x524A/onvif-go/server" ) func main() { @@ -164,7 +164,7 @@ import ( "log" "time" - "github.com/0x524A/go-onvif/server" + "github.com/0x524A/onvif-go/server" ) func main() { @@ -251,7 +251,7 @@ import ( "log" "time" - "github.com/0x524A/go-onvif" + "github.com/0x524A/onvif-go" ) func main() { @@ -430,7 +430,7 @@ This project is licensed under the MIT License - see the [LICENSE](../../LICENSE ## Acknowledgments -- Built on top of the [go-onvif](https://github.com/0x524A/go-onvif) client library +- Built on top of the [go-onvif](https://github.com/0x524A/onvif-go) client library - ONVIF specifications from [ONVIF.org](https://www.onvif.org) - Inspired by the need for flexible camera simulation in development workflows diff --git a/server/device.go b/server/device.go index 62de0bd..722be74 100644 --- a/server/device.go +++ b/server/device.go @@ -5,7 +5,7 @@ import ( "fmt" "time" - "github.com/0x524A/go-onvif/server/soap" + "github.com/0x524A/onvif-go/server/soap" ) // Device service SOAP message types diff --git a/server/server.go b/server/server.go index 5055566..e03952e 100644 --- a/server/server.go +++ b/server/server.go @@ -6,7 +6,7 @@ import ( "net/http" "time" - "github.com/0x524A/go-onvif/server/soap" + "github.com/0x524A/onvif-go/server/soap" ) // New creates a new ONVIF server with the given configuration diff --git a/server/soap/handler.go b/server/soap/handler.go index d685c29..404cbb1 100644 --- a/server/soap/handler.go +++ b/server/soap/handler.go @@ -11,7 +11,7 @@ import ( "strings" "time" - originsoap "github.com/0x524A/go-onvif/soap" + originsoap "github.com/0x524A/onvif-go/soap" ) // Handler handles incoming SOAP requests diff --git a/server/types.go b/server/types.go index 636a483..b67e244 100644 --- a/server/types.go +++ b/server/types.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/0x524A/go-onvif" + "github.com/0x524A/onvif-go" ) // Config represents the ONVIF server configuration diff --git a/test/test-server.go b/test/test-server.go index 6a22dc9..77518e1 100644 --- a/test/test-server.go +++ b/test/test-server.go @@ -6,7 +6,7 @@ import ( "log" "time" - "github.com/0x524A/go-onvif" + "github.com/0x524A/onvif-go" ) func main() { diff --git a/testdata/captures/bosch_flexidome_indoor_5100i_ir_8.71.0066_test.go b/testdata/captures/bosch_flexidome_indoor_5100i_ir_8.71.0066_test.go index 43d4e0e..2011860 100644 --- a/testdata/captures/bosch_flexidome_indoor_5100i_ir_8.71.0066_test.go +++ b/testdata/captures/bosch_flexidome_indoor_5100i_ir_8.71.0066_test.go @@ -5,8 +5,8 @@ import ( "testing" "time" - "github.com/0x524A/go-onvif" - onviftesting "github.com/0x524A/go-onvif/testing" + "github.com/0x524A/onvif-go" + onviftesting "github.com/0x524A/onvif-go/testing" ) // TestBosch_FLEXIDOME_indoor_5100i_IR_8710066 tests ONVIF client against Bosch_FLEXIDOME_indoor_5100i_IR_8.71.0066 captured responses diff --git a/testdata/captures/enhanced_device_features_test.go b/testdata/captures/enhanced_device_features_test.go index ff73eab..e8759b0 100644 --- a/testdata/captures/enhanced_device_features_test.go +++ b/testdata/captures/enhanced_device_features_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "github.com/0x524A/go-onvif" + "github.com/0x524A/onvif-go" ) // TestEnhancedDeviceFeatures tests new Device service methods with real camera data