Current section
Files
Jump to
Current section
Files
include/jose_jwt.hrl
%% -*- mode: erlang; tab-width: 4; indent-tabs-mode: 1; st-rulers: [70] -*-
%% vim: ts=4 sw=4 ft=erlang noet
%%%-------------------------------------------------------------------
%%% @author Andrew Bennett <potatosaladx@gmail.com>
%%% @copyright 2014-2015, Andrew Bennett
%%% @doc
%%%
%%% @end
%%% Created : 29 Jul 2015 by Andrew Bennett <potatosaladx@gmail.com>
%%%-------------------------------------------------------------------
-ifndef(JOSE_JWT_HRL).
-record(jose_jwt, {
fields = #{} :: map()
}).
-define(JOSE_JWT_HRL, 1).
-endif.