Packages

Extendable Redis store for Plug.Session.

Current section

Files

Jump to
Raw

lib/generator.ex

defmodule PlugSessionRedisStore.Generator do
@moduledoc """
Generic interface to generate unique session identifier.
"""
@doc "Generate a unique session identifier"
@callback generate() :: String.t()
end