├── .DS_Store ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── main.go └── view ├── index.html ├── script.js └── style.css /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranon-rat/golang-remote/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranon-rat/golang-remote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranon-rat/golang-remote/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranon-rat/golang-remote/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranon-rat/golang-remote/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranon-rat/golang-remote/HEAD/main.go -------------------------------------------------------------------------------- /view/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranon-rat/golang-remote/HEAD/view/index.html -------------------------------------------------------------------------------- /view/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranon-rat/golang-remote/HEAD/view/script.js -------------------------------------------------------------------------------- /view/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranon-rat/golang-remote/HEAD/view/style.css --------------------------------------------------------------------------------