полный рефакторинг всей системы
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-05-08 17:01:37 +10:00
parent f7b91ed75e
commit d10a74eea5
24 changed files with 1170 additions and 1490 deletions

View File

@@ -0,0 +1,6 @@
import { api8004 } from './api.js'
export async function login(username, password) {
const { data } = await api8004.post('/login', { username, password })
return data
}