feat(community): add community module skeleton with psycopg2 dependency
This commit is contained in:
parent
69a338bd98
commit
3082318e0d
2 changed files with 9 additions and 0 deletions
8
circuitforge_core/community/__init__.py
Normal file
8
circuitforge_core/community/__init__.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# circuitforge_core/community/__init__.py
|
||||
# MIT License
|
||||
|
||||
from .db import CommunityDB
|
||||
from .models import CommunityPost
|
||||
from .store import SharedStore
|
||||
|
||||
__all__ = ["CommunityDB", "CommunityPost", "SharedStore"]
|
||||
|
|
@ -11,6 +11,7 @@ dependencies = [
|
|||
"pyyaml>=6.0",
|
||||
"requests>=2.31",
|
||||
"openai>=1.0",
|
||||
"psycopg2>=2.9",
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
|
|
|
|||
Loading…
Reference in a new issue