18 lines
442 B
Erlang
18 lines
442 B
Erlang
%%%-------------------------------------------------------------------
|
|
%%% @author anlicheng
|
|
%%% @copyright (C) 2026, <COMPANY>
|
|
%%% @doc
|
|
%%%
|
|
%%% @end
|
|
%%% Created : 24. 4月 2026 16:54
|
|
%%%-------------------------------------------------------------------
|
|
-author("anlicheng").
|
|
|
|
-record(efka_client, {
|
|
uuid :: binary(),
|
|
token_hash :: binary(),
|
|
salt :: binary(),
|
|
heartbeat_secret :: binary(),
|
|
timestamp = 0 :: integer()
|
|
}).
|