11 lines
128 B
Python
11 lines
128 B
Python
|
from src.editor import Editor
|
||
|
|
||
|
|
||
|
def main():
|
||
|
editor = Editor()
|
||
|
editor.mainloop()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|