refactor(trigger): add uuid import to trigger provider service

- Imported `uuid` in `trigger_provider_service.py` to support unique identifier generation.
- This change prepares the service for future enhancements that may require UUID functionality.
This commit is contained in:
Harry
2025-09-05 14:22:30 +08:00
parent 0371d71409
commit c097fc2c48

View File

@ -1,8 +1,8 @@
import json import json
import logging import logging
import uuid
from collections.abc import Mapping from collections.abc import Mapping
from typing import Any, Optional from typing import Any, Optional
import uuid
from sqlalchemy import desc from sqlalchemy import desc
from sqlalchemy.orm import Session from sqlalchemy.orm import Session