# Released under the MIT License. See LICENSE for details.#"""Provides the TemplateFs App-Subsystem."""from__future__importannotationsfromtypingimportTYPE_CHECKINGifTYPE_CHECKING:pass
[docs]classTemplateFsAppSubsystem:"""Subsystem for TemplateFs functionality in the app. If :attr:`~batools.featureset.FeatureSet.has_python_app_subsystem` is enabled for our feature-set, the single shared instance of this class can be accessed as `template_fs` on the :class:`~babase.App` instance. """
# 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