mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 17:52:36 +00:00
8 lines
243 B
Python
8 lines
243 B
Python
#!/usr/bin/env python3
|
|
from . import frontend, dmm
|
|
|
|
if __name__ == '__main__':
|
|
settings = frontend.read_settings()
|
|
for fname in frontend.process(settings, "convert"):
|
|
dmm.DMM.from_file(fname).to_file(fname, tgm = settings.tgm)
|