feat(!783): Add --once shortcut flag to issue command

This commit is contained in:
Ginger
2026-01-06 13:15:50 -05:00
parent adc7c5ac49
commit d865dd4454
3 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ impl DatabaseTokenInfo {
impl std::fmt::Display for DatabaseTokenInfo {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "Token created by {} and used {} time. ", &self.creator, self.uses)?;
write!(f, "Token created by {} and used {} times. ", &self.creator, self.uses)?;
if let Some(expires) = &self.expires {
write!(f, "{expires}.")?;
} else {