IDs stats.

This commit is contained in:
Dominik Pantůček 2023-03-20 18:34:48 +01:00
parent a21de657d0
commit c94d8f4184
5 changed files with 44 additions and 4 deletions

View file

@ -78,6 +78,7 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
(-print () "Print given member file"
(-action- 'print-member-file))
(-tests () "Run self-tests upon startup" (-run-tests?- #t))
(-idstats () "Returns information about available member ids" (-action- 'print-idstats))
)
;; Run tests
@ -127,4 +128,8 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
(print-member-source mr))
(else
(print "No member specified!"))))
((print-idstats)
(newline)
(print-members-ids-stats MB)
(newline))
)