zaz-latex2svg/source/pythonpath/main.py

30 lines
387 B
Python

#!/usr/bin/env python3
import easymacro as app
ID_EXTENSION = ''
_ = None
def from_selection():
app.debug('From selection')
return
def from_dialog():
app.debug('From dialog')
return
def validate_app():
app.debug('Validate app')
return
def run(args, path_locales):
global _
_ = app.install_locales(path_locales)
globals()[args]()
return