Add notice about call pattern to gd_v_wallman

This commit is contained in:
Craig Everett 2025-08-07 13:57:04 +09:00
parent 4c9e65b086
commit cbae5fba49

View File

@ -1,3 +1,17 @@
%%% @doc
%%% The GajuDesk Wallet Manager
%%%
%%% This is an interface for managing multiple wallets.
%%% A wallet is defined as a collection of accounts/keys.
%%%
%%% NOTE:
%%% Any call to `gd_con:show_ui(gd_v_wallman)' must be followed by a call to
%%% either `gd_v_wallman:to_front()' or `gd_v_wallman:first_run()' or else
%%% this UI process will just sit in the background (invisible) until told to
%%% do something.
%%% @end
-module(gd_v_wallman).
-vsn("0.7.0").
-author("Craig Everett <zxq9@zxq9.com>").