Created
December 25, 2013 01:42
-
-
Save kaipakartik/8119470 to your computer and use it in GitHub Desktop.
Exercise: HTTP Handlers Implement the following types and define ServeHTTP methods on them. Register them to handle specific paths in your web server. http://tour.golang.org/#58
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "net/http" | |
| ) | |
| type String string | |
| type Struct struct { | |
| Greeting string | |
| Punct string | |
| Who string | |
| } | |
| func (s String) ServeHTTP( | |
| w http.ResponseWriter, | |
| r *http.Request) { | |
| fmt.Fprint(w, "%v", string(s)) | |
| } | |
| func (s *Struct) ServeHTTP( | |
| w http.ResponseWriter, | |
| r *http.Request) { | |
| fmt.Fprint(w, "%v",s) | |
| } | |
| func main() { | |
| // your http.Handle calls here | |
| http.ListenAndServe("localhost:4000", nil) | |
| http.Handle("/string", String("I'm a frayed knot.")) | |
| http.Handle("/struct", &Struct{"Hello", ":", "Gophers!"}) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment