Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
retopara
/
ragflow
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
95c6cbb
ragflow
/
src
/
api
/
mod.rs
Kould
impl tags api (#2)
f102c60
over 1 year ago
raw
Copy download link
history
blame
171 Bytes
use
serde::{Deserialize, Serialize};
pub
(
crate
)
mod
tag;
#[derive(Debug, Deserialize, Serialize)]
struct
JsonResponse
<T> {
code:
u32
,
err:
String
,
data: T,
}