Versions in this module Expand all Collapse all v0 v0.1.0 Jan 17, 2026 Changes in this version + var ErrStoreMissing = errors.New("flash store missing") + type Message struct + Text string + Type string + type Store struct + Key string + Store session.Store + func New(store session.Store) Store + func (s Store) Add(w http.ResponseWriter, r *http.Request, msg Message) error + func (s Store) Peek(r *http.Request) ([]Message, error) + func (s Store) Pop(w http.ResponseWriter, r *http.Request) ([]Message, error)