diff options
author | tjpcc <tjp@ctrl-c.club> | 2023-09-03 08:01:38 -0600 |
---|---|---|
committer | tjpcc <tjp@ctrl-c.club> | 2023-09-03 08:01:38 -0600 |
commit | 5befdc9c851f285000c15abc01a08010c719b307 (patch) | |
tree | 105808811158cd3df80f0cc21f53b77c73c4e4fa /README.md | |
parent | a918c9d02d8558e612be84daac3c28204bb0f93f (diff) |
sw-convert and sw-fetch tools
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -17,7 +17,7 @@ sliderule is the toolkit for working with the small web in Go. =====+===== ``` -Think of it as a net/http for small web protocols. You still have to write your server, but you can focus on the logic you want to implement knowing the protocol is already dealt with. It's been said of gemini that you can write your server in a day. Now you can write it in well under an hour. +You still have to write your server, but you can focus on the logic you want to implement knowing the protocol is already dealt with. It's been said of gemini that you can write your server in a day. Now you can write it in well under an hour. ## The slide rule @@ -85,6 +85,16 @@ The sub-packages include: * tlsauth contains middlewares and bool functions for authenticating against TLS client certificates * ...with more to come +## Tools + +The tools directory contains main packages that implement useful cli tools for working with the small web. You can install them all at once with: + +``` +go install tildegit.org/tjp/sliderule/tools/... +``` + +They all have useful output when given the -h/--help flag. + ## Get it ### Using sliderule in your project |