mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Clean project
This commit is contained in:
parent
a83dd3ca63
commit
bdae5fb026
259 changed files with 1303 additions and 21135 deletions
|
|
@ -1,24 +0,0 @@
|
|||
import typing
|
||||
|
||||
from . import base
|
||||
from . import fields
|
||||
from .animation import Animation
|
||||
from .message_entity import MessageEntity
|
||||
from .photo_size import PhotoSize
|
||||
|
||||
|
||||
class Game(base.TelegramObject):
|
||||
"""
|
||||
This object represents a game.
|
||||
|
||||
Use BotFather to create and edit games, their short names will act as unique identifiers.
|
||||
|
||||
https://core.telegram.org/bots/api#game
|
||||
"""
|
||||
|
||||
title: base.String = fields.Field()
|
||||
description: base.String = fields.Field()
|
||||
photo: typing.List[PhotoSize] = fields.ListField(base=PhotoSize)
|
||||
text: base.String = fields.Field()
|
||||
text_entities: typing.List[MessageEntity] = fields.ListField(base=MessageEntity)
|
||||
animation: Animation = fields.Field(base=Animation)
|
||||
Loading…
Add table
Add a link
Reference in a new issue