Add ChatId and UserId to the prelude

This commit is contained in:
Maybe Waffle 2022-05-05 16:03:28 +04:00
parent 57122b7533
commit bc638efc98
2 changed files with 5 additions and 0 deletions

View file

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## unreleased ## unreleased
- Add `ChatId` and `UserId` to the prelude ([#212][pr212])
[pr212]: https://github.com/teloxide/teloxide-core/pull/212
## 0.6.0 - 2022-04-25 ## 0.6.0 - 2022-04-25
### Added ### Added

View file

@ -4,5 +4,6 @@
pub use crate::{ pub use crate::{
payloads::setters::*, payloads::setters::*,
requests::{Request, Requester, RequesterExt}, requests::{Request, Requester, RequesterExt},
types::{ChatId, UserId},
Bot, Bot,
}; };