secretshop/pkg/suse/secretshop-1.0.0/vendor/github.com/prologic/go-gopher
stryan 9126a01205 update readme 2020-05-14 20:34:07 -04:00
..
.drone.yml update readme 2020-05-14 20:34:07 -04:00
.gitignore update readme 2020-05-14 20:34:07 -04:00
LICENSE update readme 2020-05-14 20:34:07 -04:00
Makefile update readme 2020-05-14 20:34:07 -04:00
README.md update readme 2020-05-14 20:34:07 -04:00
_config.yml update readme 2020-05-14 20:34:07 -04:00
go.mod update readme 2020-05-14 20:34:07 -04:00
go.sum update readme 2020-05-14 20:34:07 -04:00
gopher.go update readme 2020-05-14 20:34:07 -04:00

README.md

Gopher protocol library for Golang

Build Status CodeCov Go Report Card GoDoc Sourcegraph

This is a standards compliant Gopher library for the Go programming language implementing the RFC 1436 specification. The library includes both client and server handling and examples of each.

Installation

$ go get github.com/prologic/go-gopher

Usage

import "github.com/prologic/go-gopher"

Example

Client

package main

import (
	"fmt"

	"github.com/prologic/go-gopher"
)

func main() {
	res, _ := gopher.Get("gopher://gopher.floodgap.com/")
	bytes, _ = res.Dir.ToText()
	fmt.Println(string(bytes))
}

Server

package main

import (
	"log"

	"github.com/prologic/go-gopher"
)

func hello(w gopher.ResponseWriter, r *gopher.Request) {
	w.WriteInfo("Hello World!")
}

func main() {
	gopher.HandleFunc("/hello", hello)
	log.Fatal(gopher.ListenAndServe("localhost:70", nil))
}

Related projects:

  • gopherproxy gopherproxy is Gopher to HTTP proxy that uses go-gopher for all of its core functionality.

  • gopherclient gopherclient is a cross-platform QT/QML GUI Gopher Client using the gopherproxy library as its backend.

License

MIT