blob: 1ad8eafb7afeb48ba3cd5ad2a1bfdda31d015fec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
from pydantic import BaseModel
class RequestInfo(BaseModel):
user_id: str
comment: str
time: str
class NonebotPluginInfo(BaseModel):
module_name: str
project_link: str
name: str
desc: str
author: str
homepage: str
tags: list
is_official: bool
|