first commit

This commit is contained in:
zhaojie
2025-09-06 21:06:18 +08:00
commit 8083f136c9
94 changed files with 20559 additions and 0 deletions

9
src/vehicle/__init__.py Normal file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
车辆数据管理模块
"""
from .vehicle_data_manager import VehicleDataManager
__all__ = ['VehicleDataManager']