StandardOutput01
Configuring a modified or "branched" standard output would require knowledge of sub-system interfaces. You could tie them into many common open source IDE's this way. Blank output is supplied by default if the _interface hasn't been activated.
"""
Copyright (c) 2020 New Entity Operations Inc.
ALL RIGHTS RESERVED
"""
## Imports: Custom
from core_middlelayer import (
# Standard Output Generator
TERMINAL_OUTPUT,
)
#***********************************#
# START: STEP 10 - FRONTEND HOOK #
#***********************************#
print(
"---------- START: STsEP 10 - FRONTEND HOOK ----------"
)
class VisualOutputStarting(object):
def establish():
print(TERMINAL_OUTPUT)
print(
"---------- STOP: STEP 10 - FRONTEND HOOK----------\n"
)
#***********************************#
# STOP: STEP 10 - FRONTEND HOOK #
#***********************************#
Return HOME