| 请求 | GET /paste |
|---|---|
| 响应主体 | application/json (DataResponse<{ pastes: List<Paste> }>) |
| 请求 | GET /paste/:id |
|---|---|
| 响应主体 | application/json (DataResponse<{ paste: Paste }>) |
| 请求 | POST /paste/new |
|---|---|
| 请求主体 | application/json ({ data?: string; public?: boolean }) |
| 响应主体 | application/json ({ id: string }) |
| 请求 | POST /paste/edit/:id |
|---|---|
| 请求主体 | application/json ({ data?: string; public?: boolean }) |
| 响应主体 | application/json ({ id: string }) |
| 请求 | POST /paste/delete/:id |
|---|---|
| 响应主体 | application/json ({ id: string }) |