10 lines
210 B
Python
10 lines
210 B
Python
"""
|
|
Storage module for the USDA Vision Camera System.
|
|
|
|
This module handles file organization, management, and cleanup for recorded videos.
|
|
"""
|
|
|
|
from .manager import StorageManager
|
|
|
|
__all__ = ["StorageManager"]
|