15 lines
254 B
Python
15 lines
254 B
Python
import tkinter as tk
|
|
from codebridge.gui.main_window import MainWindow
|
|
|
|
|
|
def main():
|
|
"""
|
|
Entry point for the CodeBridge application.
|
|
"""
|
|
root = tk.Tk()
|
|
app = MainWindow(root)
|
|
root.mainloop()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main() |