Current section
Files
Jump to
Current section
Files
src/example@context.erl
-module(example@context).
-compile(no_auto_import).
-export_type([user/0, initial_context/0, context_authenticated/0]).
-type user() :: {user, binary(), binary()}.
-type initial_context() :: {initial_context, binary()}.
-type context_authenticated() :: {context_authenticated, binary(), user()}.