Add examples for inline godoc display

This commit is contained in:
James Mills 2016-09-14 14:17:31 +10:00
parent a4cfebfbdf
commit 8e892d31ed
No known key found for this signature in database
GPG Key ID: AC4C014F1440EBD6
1 changed files with 25 additions and 0 deletions

25
gopher_test.go Normal file
View File

@ -0,0 +1,25 @@
package gopher_test
import (
"fmt"
"log"
"github.com/prologic/go-gopher"
)
func hello(w gopher.ResponseWriter, r *gopher.Request) {
w.WriteInfo("Hello World!")
}
func ExampleClient() {
res, err := gopher.Get("gopher://gopher.floodgap.com")
if err != nil {
log.Fatal(err)
}
fmt.Print(res.Dir.ToText())
}
func ExampleServer() {
gopher.HandleFunc("/hello", hello)
log.Fatal(gopher.ListenAndServe("localhost:7000", nil))
}