add dockerfile and release first version

This commit is contained in:
2025-06-20 16:06:50 +07:00
parent 9d73a5b763
commit 300807e26a
12 changed files with 318 additions and 51 deletions
+11 -1
View File
@@ -8,4 +8,14 @@ class DiscordChannel(BaseModel):
updated_at: Optional[datetime] = None
server_id: int
channel_id: int
app: str
app: str
def to_dict(self):
return {
"id": self.id,
"created_at": self.created_at,
"updated_at": self.updated_at,
"server_id": self.server_id,
"channel_id": self.channel_id,
"app": self.app
}