cgx-engine 0.4.1

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
13
14
15
class User:
    def __init__(self, email: str, name: str):
        self.email = email
        self.name = name

    @classmethod
    def find_by_email(cls, email: str):
        return None

class Session:
    def __init__(self, user_id: str):
        self.user_id = user_id

    def is_valid(self) -> bool:
        return True