mirror of https://github.com/langgenius/dify.git
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:
parent
0371d71409
commit
c097fc2c48
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue