expand basic structure

This commit is contained in:
2025-11-26 10:33:55 +01:00
parent b8f5e6fffd
commit 26ff4d3ef2
10 changed files with 24 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
Copyright (c) 2025 mstoeck3. # Copyright (c) 2025 mstoeck3
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

View File

View File

View File

@@ -0,0 +1,18 @@
"""
Main entry point for the Gamayun forensic investigation application.
"""
import sys
from PySide6.QtWidgets import QApplication
from gamayun.ui.main_window import MainWindow
def main():
# TODO: Initialize logging here
# TODO: Initialize llm client and qdrant client
# TODO: start main window
exit()
if __name__ == "__main__":
main()

View File

View File

@@ -0,0 +1,5 @@
from PySide6.QtWidgets import QMainWindow
class GUI(QMainWindow):
def __init__(self):
pass