News Score: Score the News, Sort the News, Rewrite the Headlines

GitHub - syntaqx/cookie: Cookies, but with structs, for happiness.

cookie Cookies, but with structs, for happiness. Usage import ( "github.com/syntaqx/cookie" ) ... type MyCookies struct { Debug bool `cookie:"DEBUG"` } ... var cookies Cookies err := cookie.PopulateFromCookies(r, &cookies) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } fmt.Println(cookies.Debug) Helper Methods Get For when you just want the value of the cookie: debug, err := cookie.Get(r, "DEBUG") if err != nil { http.Error(w, err.Error(), http.StatusInternal...

Read more at github.com

© News Score  score the news, sort the news, rewrite the headlines