go-gemini/README.md

16 lines
366 B
Markdown
Raw Normal View History

2020-09-21 19:48:42 +00:00
# go-gemini
`go-gemini` implements the [Gemini protocol](https://gemini.circumlunar.space) in
Go.
2020-09-21 21:23:51 +00:00
It aims to provide an API similar to that of `net/http` to make it easy to
develop Gemini clients and servers.
2020-09-21 19:48:42 +00:00
2020-09-21 21:23:51 +00:00
## Examples
2020-09-21 19:48:42 +00:00
2020-09-21 21:23:51 +00:00
See `examples/client` and `examples/server` for an example client and server.
2020-09-21 19:48:42 +00:00
2020-09-21 21:23:51 +00:00
To run the examples:
2020-09-21 19:48:42 +00:00
2020-09-21 22:25:31 +00:00
go run -tags=example ./examples/server