添加没用的按钮
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-03-27 04:37:41 +08:00
parent 345d8218a0
commit 215e97aa83
13 changed files with 503 additions and 1932 deletions

10
src/lib/apis/clients.ts Normal file
View File

@ -0,0 +1,10 @@
import axios from 'axios'
export const legacyClient = axios.create({
baseURL: '/api/legacy',
timeout: 6000,
withCredentials: true,
headers: {
'Content-Type': 'application/json',
},
})