Was in the neighborhood and...

This commit is contained in:
swag 2022-12-10 19:03:53 -05:00
parent a62a4c495e
commit 6b82c5c96b

View File

@ -6,7 +6,7 @@ has description => 'Hash a string with Argon2';
has usage => sub ($self) { $self->extract_usage };
sub run($self, @args) {
say $self->app->authenticator->hash_password($_) for @args;
say $self->app->authenticator->hash_password($_) for @args
}
1;