Skip to content

Commit 5433fb9

Browse files
committed
update: optimize project structure
1 parent 25fa5cd commit 5433fb9

File tree

5 files changed

+3
-100
lines changed

5 files changed

+3
-100
lines changed

src/device/__init__.py

Whitespace-only changes.

src/device/device_manager.py

Lines changed: 0 additions & 97 deletions
This file was deleted.

src/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
from src.controller.clipboard_controller import get_clipboard_controller
1212
from src.controller.keyboard_controller import KeyFactory, get_keyboard_controller
13-
from src.device.device import Device
13+
from src.utils.device import Device
1414
from src.gui.server_gui import ServerGUI, GuiMessage
1515
from src.gui.position import Position
1616
from src.communication.message import Message, MsgType
File renamed without changes.

src/utils/device_storage.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import sqlite3
22
import time
33

4-
from src.device import device
5-
from src.device.device import Device
4+
from src.utils import device
5+
from src.utils.device import Device
66
from src.gui.position import Position
77
from src.gui.screen import Screen
88

0 commit comments

Comments
 (0)