7 lines
115 B
Python
7 lines
115 B
Python
|
|
|
||
|
|
from pydantic import BaseModel
|
||
|
|
from typing import List, Dict
|
||
|
|
|
||
|
|
class ValidateWorker(BaseModel):
|
||
|
|
result:str
|
||
|
|
|