├── .github └── screenshot.png ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── bench ├── bench └── main.lua ├── go.mod ├── internal └── humanize │ └── humanize.go └── main.go /.github/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuarli/srv/HEAD/.github/screenshot.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | srv 2 | srv-debug 3 | build/ 4 | release/ 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuarli/srv/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuarli/srv/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuarli/srv/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuarli/srv/HEAD/README.md -------------------------------------------------------------------------------- /bench/bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuarli/srv/HEAD/bench/bench -------------------------------------------------------------------------------- /bench/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuarli/srv/HEAD/bench/main.lua -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/joshuarli/srv 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /internal/humanize/humanize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuarli/srv/HEAD/internal/humanize/humanize.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuarli/srv/HEAD/main.go --------------------------------------------------------------------------------