This commit is contained in:
2025-04-30 17:07:16 +03:00
commit 2190ec7ca7
37 changed files with 994 additions and 0 deletions

View File

@ -0,0 +1,24 @@
from bot.States import States
MIDJOURNEY_SET_PROMPT = 41
def set_states():
states_arr = {
"set_prompt": MIDJOURNEY_SET_PROMPT
}
return states_arr
class MidjourneyStates(States):
def __init__(self):
pass
@staticmethod
def get_state_by_key(key: str):
states = set_states()
if key in states:
return states[key]
return None