diff --git a/docs/source/dispatcher/dispatcher.rst b/docs/source/dispatcher/dispatcher.rst index 1d2c2f92..8e1e17d4 100644 --- a/docs/source/dispatcher/dispatcher.rst +++ b/docs/source/dispatcher/dispatcher.rst @@ -1,41 +1,12 @@ Dispatcher ========== +With parts of this package you can manage bot updates. -Dispatcher class ----------------- -.. automodule:: aiogram.dispatcher - :members: - :show-inheritance: - -Storages --------- -.. automodule:: aiogram.dispatcher.storage - :members: - :show-inheritance: - -Filters -------- -.. automodule:: aiogram.dispatcher.filters - :members: - :show-inheritance: - -Handler class -------------- -.. automodule:: aiogram.dispatcher.handler - :members: - :show-inheritance: - - -Middlewares ------------ -.. automodule:: aiogram.dispatcher.middlewares - :members: - :show-inheritance: - - -Webhook -------- -.. automodule:: aiogram.dispatcher.webhook - :members: - :show-inheritance: +.. toctree:: + main + storage + webhook + filters + handler + middlewares diff --git a/docs/source/dispatcher/filters.rst b/docs/source/dispatcher/filters.rst new file mode 100644 index 00000000..8964eae4 --- /dev/null +++ b/docs/source/dispatcher/filters.rst @@ -0,0 +1,6 @@ +Filters +------- + +.. automodule:: aiogram.dispatcher.filters + :members: + :show-inheritance: diff --git a/docs/source/dispatcher/handler.rst b/docs/source/dispatcher/handler.rst new file mode 100644 index 00000000..322496d9 --- /dev/null +++ b/docs/source/dispatcher/handler.rst @@ -0,0 +1,6 @@ +Handler class +------------- + +.. automodule:: aiogram.dispatcher.handler + :members: + :show-inheritance: diff --git a/docs/source/dispatcher/main.rst b/docs/source/dispatcher/main.rst new file mode 100644 index 00000000..93de08d2 --- /dev/null +++ b/docs/source/dispatcher/main.rst @@ -0,0 +1,6 @@ +Dispatcher class +---------------- + +.. automodule:: aiogram.dispatcher + :members: + :show-inheritance: diff --git a/docs/source/dispatcher/middlewares.rst b/docs/source/dispatcher/middlewares.rst new file mode 100644 index 00000000..dba0702f --- /dev/null +++ b/docs/source/dispatcher/middlewares.rst @@ -0,0 +1,6 @@ +Middlewares +----------- + +.. automodule:: aiogram.dispatcher.middlewares + :members: + :show-inheritance: diff --git a/docs/source/dispatcher/storage.rst b/docs/source/dispatcher/storage.rst new file mode 100644 index 00000000..6551978f --- /dev/null +++ b/docs/source/dispatcher/storage.rst @@ -0,0 +1,8 @@ +Storages +-------- + +In this module stored base of storage's for finite-state machine. + +.. automodule:: aiogram.dispatcher.storage + :members: + :show-inheritance: diff --git a/docs/source/dispatcher/webhook.rst b/docs/source/dispatcher/webhook.rst new file mode 100644 index 00000000..371eec95 --- /dev/null +++ b/docs/source/dispatcher/webhook.rst @@ -0,0 +1,6 @@ +Webhook +------- + +.. automodule:: aiogram.dispatcher.webhook + :members: + :show-inheritance: