Created libs.code package and moved pertinant DTOs to it as well as widget.code that can go there too

This commit is contained in:
2026-01-13 11:23:26 -06:00
parent 4469e8189f
commit f7d944f7a9
44 changed files with 41 additions and 33 deletions

View File

@@ -1,27 +0,0 @@
"""
Code DTO Class Package
"""
from .code_event import CodeEvent
from .get_command_system_event import GetCommandSystemEvent
from .request_completion_event import RequestCompletionEvent
from .cursor_moved_event import CursorMovedEvent
from .modified_changed_event import ModifiedChangedEvent
from .text_changed_event import TextChangedEvent
from .text_inserted_event import TextInsertedEvent
from .focused_view_event import FocusedViewEvent
from .set_active_file_event import SetActiveFileEvent
from .file_path_set_event import FilePathSetEvent
from .added_new_file_event import AddedNewFileEvent
from .swapped_file_event import SwappedFileEvent
from .popped_file_event import PoppedFileEvent
from .removed_file_event import RemovedFileEvent
from .get_file_event import GetFileEvent
from .get_swap_file_event import GetSwapFileEvent
from .add_new_file_event import AddNewFileEvent
from .swap_file_event import SwapFileEvent
from .pop_file_event import PopFileEvent
from .remove_file_event import RemoveFileEvent