feat(community): add community module skeleton with psycopg2 dependency

This commit is contained in:
pyr0ball 2026-04-12 20:47:05 -07:00
parent 69a338bd98
commit 3082318e0d
2 changed files with 9 additions and 0 deletions

View 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"]

View file

@ -11,6 +11,7 @@ dependencies = [
"pyyaml>=6.0",
"requests>=2.31",
"openai>=1.0",
"psycopg2>=2.9",
]
[project.optional-dependencies]