6 lines
238 B
Python
6 lines
238 B
Python
from .states import TelegramWorkflow
|
|
from statemachine import StateMachine, State
|
|
|
|
class AuthWorkflow(TelegramWorkflow):
|
|
init =State('init', initial=True) # Initialize the workflow
|
|
finished = State('finished') # Workflow has ended |