Skip to content

Instantly share code, notes, and snippets.

@siisee11
Last active December 11, 2019 11:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save siisee11/9af93b0ffc48a117e5491cd7b2836c5a to your computer and use it in GitHub Desktop.
Save siisee11/9af93b0ffc48a117e5491cd7b2836c5a to your computer and use it in GitHub Desktop.
Http
package main
import (
"fmt"
"log"
"net/http"
)
type String string
func (s String) ServeHTTP(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, s)
}
type Struct struct {
Greeting string
Punct string
Who string
}
func (s *Struct) ServeHTTP(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, s.Greeting, s.Punct, s.Who)
}
func main() {
http.Handle("/string", String("I'm a jaeyoun."))
http.Handle("/struct", &Struct{"Hello", ":", "GoGo"})
err := http.ListenAndServe("localhost:4000", nil)
if err != nil {
log.Fatal(err)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment