9 lines
132 B
Python
9 lines
132 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import annotations
|
|
|
|
import pydantic
|
|
|
|
|
|
class AsyncResultOut(pydantic.BaseModel):
|
|
id: str
|