Access HTTP sessions from buffalo.Context
Sessions are available directly from the buffalo.Context within any handler. Buffalo uses the github.com/gorilla/sessions package under the hood. HTTP sessions are non-persistent storage destroyed when the browser closes (default browser config). Use sessions for flash messages or temporary user-specific data. For persistent client-side storage, use cookies instead.