├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── extra └── logo.psd ├── main.go ├── mux.go ├── shovel.go ├── ssh.go └── tcp.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescun/switcher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescun/switcher/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescun/switcher/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescun/switcher/HEAD/README.md -------------------------------------------------------------------------------- /extra/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescun/switcher/HEAD/extra/logo.psd -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescun/switcher/HEAD/main.go -------------------------------------------------------------------------------- /mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescun/switcher/HEAD/mux.go -------------------------------------------------------------------------------- /shovel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescun/switcher/HEAD/shovel.go -------------------------------------------------------------------------------- /ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescun/switcher/HEAD/ssh.go -------------------------------------------------------------------------------- /tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescun/switcher/HEAD/tcp.go --------------------------------------------------------------------------------