Initial commit: VoIdeaAI - voice-first AI idea assistant
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
"""Bot command schemas."""
|
||||
|
||||
from datetime import datetime
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class BotCommandResponse(BaseModel):
|
||||
id: str
|
||||
name: str
|
||||
description: str
|
||||
enabled: bool
|
||||
requires_auth: bool
|
||||
created_at: datetime
|
||||
updated_at: datetime
|
||||
|
||||
|
||||
class BotCommandUpdate(BaseModel):
|
||||
name: str
|
||||
enabled: bool
|
||||
Reference in New Issue
Block a user