mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-18 20:01:52 +03:00
7 lines
160 B
Python
7 lines
160 B
Python
|
from pydantic import BaseSettings
|
||
|
|
||
|
|
||
|
class ContactsSettings(BaseSettings):
|
||
|
resend_contact_sales_from: str = "null"
|
||
|
resend_contact_sales_to: str = "null"
|