Add new source folder and fix method enums

This commit is contained in:
netkas 2024-11-05 15:44:03 -05:00
parent 2900b708da
commit ee2dff1e31
2 changed files with 3 additions and 2 deletions

1
.idea/tgbot.iml generated
View file

@ -2,6 +2,7 @@
<module type="WEB_MODULE" version="4"> <module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager"> <component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$"> <content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" /> <sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" />
<excludeFolder url="file://$MODULE_DIR$/build" /> <excludeFolder url="file://$MODULE_DIR$/build" />
</content> </content>

View file

@ -38,6 +38,8 @@
{ {
case GET_UPDATES = 'getUpdates'; case GET_UPDATES = 'getUpdates';
case SET_WEBHOOK = 'setWebhook'; case SET_WEBHOOK = 'setWebhook';
case DELETE_WEBHOOK = 'deleteWebhook';
case GET_WEBHOOK_INFO = 'getWebhookInfo';
case GET_ME = 'getMe'; case GET_ME = 'getMe';
case LOGOUT = 'logOut'; case LOGOUT = 'logOut';
case CLOSE = 'close'; case CLOSE = 'close';
@ -61,8 +63,6 @@
case SEND_POLL = 'sendPoll'; case SEND_POLL = 'sendPoll';
case SEND_DICE = 'sendDice'; case SEND_DICE = 'sendDice';
case SEND_CHAT_ACTION = 'sendChatAction'; case SEND_CHAT_ACTION = 'sendChatAction';
case DELETE_WEBHOOK = 'deleteWebhook';
case GET_WEBHOOK_INFO = 'getWebhookInfo';
case SET_MESSAGE_REACTION = 'setMessageReaction'; case SET_MESSAGE_REACTION = 'setMessageReaction';
/** /**