dify
This commit is contained in:
14
dify/api/configs/packaging/__init__.py
Normal file
14
dify/api/configs/packaging/__init__.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from pydantic import Field
|
||||
|
||||
from configs.packaging.pyproject import PyProjectTomlConfig
|
||||
|
||||
|
||||
class PackagingInfo(PyProjectTomlConfig):
|
||||
"""
|
||||
Packaging build information
|
||||
"""
|
||||
|
||||
COMMIT_SHA: str = Field(
|
||||
description="SHA-1 checksum of the git commit used to build the app",
|
||||
default="",
|
||||
)
|
||||
Reference in New Issue
Block a user