BackendName
A supported database backend, as a string literal.
BackendName: TypeAlias = Literal["postgresql", "mysql", "sqlite"]
Using a Literal type rather than a plain str lets type checkers catch misspelled backend names at analysis time instead of at runtime.