# Released under the MIT License. See LICENSE for details.#"""Provides AppIntent functionality."""from__future__importannotationsfromtypingimportTYPE_CHECKINGifTYPE_CHECKING:pass
[docs]classAppIntent:"""Base class for high level directives given to the app."""
[docs]classAppIntentDefault(AppIntent):"""Tells the app to simply run in its default mode."""
[docs]classAppIntentExec(AppIntent):"""Tells the app to exec some Python code."""def__init__(self,code:str):self.code=code
# Docs-generation hack; import some stuff that we likely only forward-declared# in our actual source code so that docs tools can find it.fromtypingimport(Coroutine,Any,Literal,Callable,Generator,Awaitable,Sequence,Self)importasynciofromconcurrent.futuresimportFuture