Skip to content

Commit

Permalink
documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Yukiiyi committed Jan 24, 2025
1 parent 3a8e8ae commit 8bf256f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file modified dump.rdb
Binary file not shown.
3 changes: 2 additions & 1 deletion src/cli/manage.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,13 @@ async function listEvents(count = 10) {
eventData.forEach((event) => {
const timestamp = chalk.green(String(event.timestampISO));
const type = chalk.yellow(String(event.type));
const textPart = event.text ? ` ${event.text('here')}` : '';
const textPart = event.text ? ` ${event.text}` : '';
const uidPart = event.uid ? event.uid : 0;
console.log(` * ${timestamp} ${type}${textPart} (uid: ${uidPart})`);
});
process.exit();
}
// recieved help from chatgpt

async function info() {
console.log('');
Expand Down

0 comments on commit 8bf256f

Please sign in to comment.