batemplatefs
Ballistica Template Feature Set - just an example.
1# Released under the MIT License. See LICENSE for details. 2# 3"""Ballistica Template Feature Set - just an example.""" 4 5# ba_meta require api 9 6 7# Package up various private bits (including stuff from our native 8# module) into a nice clean public API. 9from _batemplatefs import hello_again_world 10from batemplatefs._appsubsystem import TemplateFsAppSubsystem 11 12__all__ = [ 13 'TemplateFsAppSubsystem', 14 'hello_again_world', 15]
class
TemplateFsAppSubsystem:
13class TemplateFsAppSubsystem: 14 """Subsystem for TemplateFs functionality in the app. 15 16 If :attr:`~batools.featureset.FeatureSet.has_python_app_subsystem` 17 is enabled for our feature-set, the single shared instance of this 18 class can be accessed as `template_fs` on the :class:`~babase.App` 19 instance. 20 """
Subsystem for TemplateFs functionality in the app.
If ~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 ~babase.App
instance.
def
hello_again_world() -> None:
Another hello world print.