Current section
Files
Jump to
Current section
Files
src/hexer_commands.erl
-module(hexer_commands).
-export([ 'user.auth'/0
, 'user.register'/0
, 'publish'/0
]).
-spec 'user.auth'() -> ok.
'user.auth'() -> hexer_user:auth().
-spec 'user.register'() -> ok.
'user.register'() -> hexer_user:register().
-spec publish() -> ok | {error, any()}.
publish() -> hexer_package:publish().