8 lines
134 B
Python
8 lines
134 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from typing import Annotated
|
||
|
|
|
||
|
|
from pydantic import Field
|
||
|
|
|
||
|
|
TodoOrder = Annotated[int, Field(ge=0)]
|