mirror of
https://github.com/Kludex/awesome-fastapi-projects.git
synced 2025-02-07 09:00:55 +00:00
7 lines
192 B
Python
7 lines
192 B
Python
|
"""Type definitions for the application."""
|
||
|
from typing import NewType
|
||
|
|
||
|
RepoId = NewType("RepoId", int)
|
||
|
DependencyId = NewType("DependencyId", int)
|
||
|
RevisionHash = NewType("RevisionHash", str)
|