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 The single shared instance of this class can be accessed at 17 ba*.app.templatefs. Note that it is possible for ba*.app.templatefs 18 to be None if the TemplateFs feature-set is not enabled, and code 19 should handle that case gracefully. 20 """
Subsystem for TemplateFs functionality in the app.
The single shared instance of this class can be accessed at ba.app.templatefs. Note that it is possible for ba.app.templatefs to be None if the TemplateFs feature-set is not enabled, and code should handle that case gracefully.
def
hello_again_world() -> None:
Another hello world print.