mirror of
https://github.com/leminlimez/Nugget.git
synced 2025-04-08 04:23:05 +08:00
9 lines
237 B
Python
9 lines
237 B
Python
from pathlib import Path
|
|
|
|
from devicemanagement.constants import Device, Tweak
|
|
|
|
class DataSingleton:
|
|
def __init__(self):
|
|
self.current_device: Device
|
|
self.device_available: bool = False
|
|
self.gestalt_path = None |