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
1 changed files with 1 additions and 1 deletions

View File

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