Rename ResultsContext -> SharedContext

This commit is contained in:
2025-04-30 21:45:11 -04:00
parent 80de941335
commit bc1637143c
6 changed files with 69 additions and 40 deletions

View File

@ -2,6 +2,7 @@ import asyncio
from falyx import Action, ActionGroup, ChainedAction
# Actions can be defined as synchronous functions
# Falyx will automatically convert them to async functions
def hello() -> None:

View File

@ -1,7 +1,7 @@
import asyncio
import random
from falyx import Falyx, Action, ChainedAction
from falyx import Action, ChainedAction, Falyx
from falyx.utils import setup_logging
setup_logging()