clean: use camel case for class file

This commit is contained in:
2024-02-20 09:29:47 +01:00
parent c143d96443
commit 40a9395340
16 changed files with 21 additions and 21 deletions

View File

@ -0,0 +1,10 @@
class Message {
constructor(channel_id, author_id, content, time) {
this.channel_id = channel_id;
this.author_id = author_id;
this.content = content;
this.time = time;
}
}
export {Message};