Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
gemini
✓ git.sr.ht/~adnano/go-gemini
Fetch a Gemini page and print its meta.
package main
import (
"context"
"fmt"
"git.sr.ht/~adnano/go-gemini"
)
func main() {
client := &gemini.Client{}
resp, err := client.Get(context.Background(), "gemini://example.com")
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println(resp.Meta)
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
0.2.6latest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.