go example
# Linux
export GO111MODULE=on
export GOPROXY=https://goproxy.io
# Windows
SET GO111MODULE=on
SET GOPROXY=https://goproxy.iowget -O static.go https://raw.githubusercontent.com/koomox/go-example/master/source/static.go
go mod init .
go build -o static static.gowget -O cryptofile.go https://raw.githubusercontent.com/koomox/go-example/master/source/cryptofile.go
go mod init .
go build -o cryptofile cryptofile.gowget https://raw.githubusercontent.com/koomox/go-example/master/storage/cryptofile.tar.gz
tar -zxf cryptofile.tar.gz -C /usr/bin
chmod +x /usr/bin/cryptofilewget -O proxypool.go https://raw.githubusercontent.com/koomox/go-example/master/source/proxypool.go
go mod init .
go build -o proxypool proxypool.go