use pages for the log list command and tell the user about the list command
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 39s

This commit is contained in:
Lee
2024-07-04 05:48:20 +01:00
parent 79d20672c5
commit e873988c47
4 changed files with 82 additions and 50 deletions

View File

@ -12,6 +12,9 @@ public class EmbedDescriptionBuilder {
private final StringBuilder builder = new StringBuilder();
public EmbedDescriptionBuilder(String title) {
if (title == null) {
return;
}
builder.append("**").append(title).append("**").append("\n");
}