go-gemini/README.md

18 lines
483 B
Markdown
Raw Normal View History

2020-09-21 13:48:42 -06:00
# go-gemini
2020-09-21 16:28:34 -06:00
[![GoDoc](https://godoc.org/git.sr.ht/~adnano/go-gemini?status.svg)](https://godoc.org/git.sr.ht/~adnano/go-gemini)
2020-09-21 13:48:42 -06:00
`go-gemini` implements the [Gemini protocol](https://gemini.circumlunar.space) in
Go.
2020-09-21 15:23:51 -06: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 13:48:42 -06:00
2020-09-21 15:23:51 -06:00
## Examples
2020-09-21 13:48:42 -06:00
2020-09-21 15:23:51 -06:00
See `examples/client` and `examples/server` for an example client and server.
2020-09-21 13:48:42 -06:00
2020-09-21 15:23:51 -06:00
To run the examples:
2020-09-21 13:48:42 -06:00
2020-09-21 16:25:31 -06:00
go run -tags=example ./examples/server