Packages

An Session Management tool for web frameworks - originally built for Nitrogen

Current section

Files

Jump to
canister include canister.hrl
Raw

include/canister.hrl

-record(canister_data, {
id,
data=#{} :: map()
}).
-record(canister_times, {
id,
last_access=os:timestamp() :: undefined | erlang:timestamp(),
last_update=os:timestamp() :: undefined | erlang:timestamp(),
deleted=undefined :: undefined | erlang:timestamp()
}).