mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-01 18:28:27 +02:00
15 lines
389 B
Python
15 lines
389 B
Python
import sys
|
|
|
|
from source.gui import install
|
|
from source.option import Option
|
|
from source.translation import load_language
|
|
|
|
|
|
# this allows every variable to be accessible from other files, useful for the plugins
|
|
self = sys.modules[__name__]
|
|
|
|
options = Option.from_file("./option.json")
|
|
translater = load_language(options["language"])
|
|
|
|
self.window = install.Window(options)
|
|
self.window.run()
|