style: Prettier format

This commit is contained in:
April Hall 2025-01-11 13:44:49 -05:00
parent 6625f0194b
commit 785892e322
Signed by: arithefirst
GPG Key ID: 4508A15C4DB91C5B

View File

@ -50,11 +50,11 @@ const client = new cassandra.Client({
// Connect to Cassandra/ScyllaDB and create
// the necessary tables, keyspaces, etc.
try {
await client.connect()
await client.connect();
} catch (e) {
// @ts-expect-error I don't like this thing yelling at me
console.log(`Error connecting to DB: ${e.message}`);
process.exit(1)
process.exit(1);
}
try {
@ -63,7 +63,7 @@ try {
} catch (e) {
// @ts-expect-error I don't like this thing yelling at me
console.log(`Error generating keyspaces: ${e.message}`);
process.exit(1)
process.exit(1);
}
export { client, createChannel, getMessages, storeMessage };