20 lines
404 B
Python
20 lines
404 B
Python
import logging
|
|
import sys
|
|
|
|
from grid.ui.window import Window
|
|
from PySide6.QtWidgets import QApplication
|
|
|
|
def main():
|
|
print("Hello from sphere-grid!")
|
|
logging.basicConfig(
|
|
level=logging.DEBUG,
|
|
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
|
|
)
|
|
app = QApplication(sys.argv)
|
|
w = Window() # noqa: F841
|
|
app.exec()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|