├── .gitattributes ├── .gitignore ├── LiveGoServer ├── LiveGoServer.exe ├── README.md ├── config └── config.go ├── logs └── livego.log ├── public ├── css │ └── bootstrap.css ├── images │ ├── 0.jpg │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ ├── 9.jpg │ ├── jt.png │ ├── jtmobile.png │ ├── jtmobilet.png │ ├── live.png │ └── pay.png ├── js │ ├── bootstrap.js │ └── jquery.min.js └── vue │ ├── images │ ├── 1.jpg │ ├── 2.png │ ├── 3.jpg │ └── bg.jpg │ ├── main.js │ └── vue.js ├── server.sh ├── server ├── LiveGoServer.go └── lib │ ├── client │ └── client.go │ └── websocket │ ├── client.go │ ├── dial.go │ ├── hybi.go │ ├── server.go │ └── websocket.go └── views ├── camera.html ├── index.html └── live.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/.gitignore -------------------------------------------------------------------------------- /LiveGoServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/LiveGoServer -------------------------------------------------------------------------------- /LiveGoServer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/LiveGoServer.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/README.md -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/config/config.go -------------------------------------------------------------------------------- /logs/livego.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/logs/livego.log -------------------------------------------------------------------------------- /public/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/css/bootstrap.css -------------------------------------------------------------------------------- /public/images/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/0.jpg -------------------------------------------------------------------------------- /public/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/1.jpg -------------------------------------------------------------------------------- /public/images/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/10.jpg -------------------------------------------------------------------------------- /public/images/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/11.jpg -------------------------------------------------------------------------------- /public/images/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/12.jpg -------------------------------------------------------------------------------- /public/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/2.jpg -------------------------------------------------------------------------------- /public/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/3.jpg -------------------------------------------------------------------------------- /public/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/4.jpg -------------------------------------------------------------------------------- /public/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/5.jpg -------------------------------------------------------------------------------- /public/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/6.jpg -------------------------------------------------------------------------------- /public/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/7.jpg -------------------------------------------------------------------------------- /public/images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/8.jpg -------------------------------------------------------------------------------- /public/images/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/9.jpg -------------------------------------------------------------------------------- /public/images/jt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/jt.png -------------------------------------------------------------------------------- /public/images/jtmobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/jtmobile.png -------------------------------------------------------------------------------- /public/images/jtmobilet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/jtmobilet.png -------------------------------------------------------------------------------- /public/images/live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/live.png -------------------------------------------------------------------------------- /public/images/pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/images/pay.png -------------------------------------------------------------------------------- /public/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/js/bootstrap.js -------------------------------------------------------------------------------- /public/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/js/jquery.min.js -------------------------------------------------------------------------------- /public/vue/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/vue/images/1.jpg -------------------------------------------------------------------------------- /public/vue/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/vue/images/2.png -------------------------------------------------------------------------------- /public/vue/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/vue/images/3.jpg -------------------------------------------------------------------------------- /public/vue/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/vue/images/bg.jpg -------------------------------------------------------------------------------- /public/vue/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/vue/main.js -------------------------------------------------------------------------------- /public/vue/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/public/vue/vue.js -------------------------------------------------------------------------------- /server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/server.sh -------------------------------------------------------------------------------- /server/LiveGoServer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/server/LiveGoServer.go -------------------------------------------------------------------------------- /server/lib/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/server/lib/client/client.go -------------------------------------------------------------------------------- /server/lib/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/server/lib/websocket/client.go -------------------------------------------------------------------------------- /server/lib/websocket/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/server/lib/websocket/dial.go -------------------------------------------------------------------------------- /server/lib/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/server/lib/websocket/hybi.go -------------------------------------------------------------------------------- /server/lib/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/server/lib/websocket/server.go -------------------------------------------------------------------------------- /server/lib/websocket/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/server/lib/websocket/websocket.go -------------------------------------------------------------------------------- /views/camera.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/views/camera.html -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/views/index.html -------------------------------------------------------------------------------- /views/live.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qieangel2013/livego/HEAD/views/live.html --------------------------------------------------------------------------------