1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2025-09-05 16:19:26 +00:00

String#asUsername -> String#toUsername

This commit is contained in:
2019-06-02 22:57:52 +08:00
parent ae7365e9e9
commit 4e276846b4
2 changed files with 2 additions and 1 deletions

View File

@@ -32,7 +32,7 @@ data class Username(
}
}
fun String.asUsername(): Username = Username(this)
fun String.toUsername(): Username = Username(this)
@Serializer(ChatIdentifier::class)
internal class ChatIdentifierSerializer: KSerializer<ChatIdentifier> {