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 8
 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._subsystem import TemplateFsSubsystem
11
12__all__ = [
13    'TemplateFsSubsystem',
14    'hello_again_world',
15]
class TemplateFsSubsystem:
13class TemplateFsSubsystem:
14    """Subsystem for TemplateFs functionality in the app.
15
16    The single shared instance of this app can be accessed at
17    babase.app.templatefs. Note that it is possible for babase.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 app can be accessed at babase.app.templatefs. Note that it is possible for babase.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:
57def hello_again_world() -> None:
58    """Another hello world print."""
59    return None

Another hello world print.