mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-04 19:58:26 +02:00
13 lines
381 B
Python
13 lines
381 B
Python
from source.gui import install
|
|
from source.option import Options
|
|
from source.translation import load_language
|
|
|
|
|
|
# this allows every variable to be accessible from other files, useful for the plugins
|
|
self = __import__(__name__)
|
|
|
|
options = Options.from_file("./option.json")
|
|
translater = load_language(options.language.get())
|
|
|
|
self.window = install.Window(options)
|
|
self.window.run()
|