├── .gitignore ├── README.md ├── conf └── conf.go ├── go.mod ├── go.sum ├── img ├── 1.png └── 2.png ├── main.go ├── modules ├── ChangePWD.go ├── GetInfo.go └── Run.go └── utils ├── ColorPrint.go └── utils.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/HikInfoGet/HEAD/README.md -------------------------------------------------------------------------------- /conf/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/HikInfoGet/HEAD/conf/conf.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/HikInfoGet/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/HikInfoGet/HEAD/go.sum -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/HikInfoGet/HEAD/img/1.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/HikInfoGet/HEAD/img/2.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/HikInfoGet/HEAD/main.go -------------------------------------------------------------------------------- /modules/ChangePWD.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/HikInfoGet/HEAD/modules/ChangePWD.go -------------------------------------------------------------------------------- /modules/GetInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/HikInfoGet/HEAD/modules/GetInfo.go -------------------------------------------------------------------------------- /modules/Run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/HikInfoGet/HEAD/modules/Run.go -------------------------------------------------------------------------------- /utils/ColorPrint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/HikInfoGet/HEAD/utils/ColorPrint.go -------------------------------------------------------------------------------- /utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeljck/HikInfoGet/HEAD/utils/utils.go --------------------------------------------------------------------------------