Pendrokar's picture
xVASynth v3 code for English
19c8b95
raw
history blame
No virus
652 Bytes
logger = setupData["logger"]
isCPUonly = setupData["isCPUonly"]
# Example importing base modules
import os
print(os.listdir("./"))
# Example importing custom modules
from plugins.test_plugin.test import doImportableFunction
print(doImportableFunction(1,2))
def start_pre(data=None):
# Example using modules
global os, doImportableFunction, logger, isCPUonly
logger.log(f'Start pre: {data} (isCPUonly: {isCPUonly})')
logger.log(f'doImportableFunction(1,2) = {doImportableFunction(1,2)}')
logger.log(", ".join(os.listdir("./")))
def start_post(data=None):
global logger, isCPUonly
logger.log(f'Start post: {data}')