├── .gitignore ├── LICENSE ├── README.md ├── healthchecker.go ├── loadbalancer.go ├── server.go └── server.py /.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunmahishi/loadbalancer-in-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunmahishi/loadbalancer-in-go/HEAD/README.md -------------------------------------------------------------------------------- /healthchecker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunmahishi/loadbalancer-in-go/HEAD/healthchecker.go -------------------------------------------------------------------------------- /loadbalancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunmahishi/loadbalancer-in-go/HEAD/loadbalancer.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunmahishi/loadbalancer-in-go/HEAD/server.go -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunmahishi/loadbalancer-in-go/HEAD/server.py --------------------------------------------------------------------------------