(ns your-namespace
(:require noir.session))
Stateful session handling functions
Usage: (clear!)
Remove all data from the session and start over cleanly.
Usage: (get k)
Get the key's value from the session, returns nil if it doesn't exist.
Usage: (put! k v)
Associates the key with the given value in the session
Usage: (remove! k)
Remove a key from the session