12 lines
377 B
Python
12 lines
377 B
Python
"""
|
|
Pi-Kit API package
|
|
|
|
This package splits the monolithic `pikit-api.py` script into small, testable
|
|
modules while keeping the on-device entry point compatible.
|
|
"""
|
|
|
|
# Re-export commonly used helpers for convenience
|
|
from .constants import HOST, PORT # noqa: F401
|
|
from .server import run_server # noqa: F401
|
|
from .releases import apply_update, check_for_update # noqa: F401
|