Glossary coding Term Page

Sub-dependency

A dependency that depends on another dependency

sub-dependency #coding#fastapi
Korean version

Related Concepts

Core Idea

Sub-dependency is A dependency that depends on another dependency. get_current_user uses get_token and get_session as sub-dependencies. It usually makes the most sense alongside Dependency injection, Request scope, Bearer token.

Why It Matters Here

Mathbong reuses this term across fastapi posts as shared vocabulary.

Posts Mentioning This Concept