[MIRROR: https://git.mills.io/prologic/go-gopher] Gopher (RFC 1436) protocol library for the Go (Golang) programming language supporting both client and server
Go to file
2020-08-03 20:44:32 +10:00
.dependabot Added DependaBot config 2019-12-26 13:54:42 +10:00
.github Migrate to GHA Workflows 2020-06-08 14:50:08 +10:00
examples Added DependaBot config 2019-12-26 13:54:42 +10:00
testdata Fix tests (#12) 2020-07-21 12:07:12 +10:00
_config.yml Set theme jekyll-theme-hacker 2018-12-30 23:35:52 +10:00
.gitignore Migrate to Drone CI 2018-12-30 23:29:30 +10:00
go.mod Bump github.com/stretchr/testify from 1.2.2 to 1.6.0 (#7) 2020-06-01 11:14:56 +10:00
go.sum Fix tests (#12) 2020-07-21 12:07:12 +10:00
gopher_test.go Fix tests (#12) 2020-07-21 12:07:12 +10:00
gopher.go Fix tests (#12) 2020-07-21 12:07:12 +10:00
LICENSE Added LICENSE 2016-09-14 23:16:43 +10:00
Makefile Migrate to Drone CI 2018-12-30 23:29:30 +10:00
README.md Fix client example (#13) 2020-08-03 20:44:32 +10:00

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