timoniq / telegrinder

Modern visionary telegram bot framework
MIT License
31 stars 5 forks source link

feat: compose nodes from decorated functions #75

Closed timoniq closed 1 month ago

timoniq commented 3 months ago
@node
def/async def db_connection() -> Connection:
    conn = db.connect()
    yield conn
    conn.close()