cgx-engine 0.3.0

Core engine for cgx — Tree-sitter parsing, DuckDB graph storage, git analysis, and clustering
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
from models import User

class AuthService:
    def login(self, email: str, password: str) -> bool:
        user = User.find_by_email(email)
        return user is not None

    def logout(self, session_id: str) -> None:
        pass

def hash_password(password: str) -> str:
    return password[::-1]