Refactor: Rename NanoKVM to BatchuKVM and update server URL

This commit is contained in:
2025-12-09 20:35:38 +09:00
commit 8cf674c9e5
396 changed files with 54380 additions and 0 deletions

14
web/src/mocks/browser.ts Normal file
View File

@@ -0,0 +1,14 @@
import { setupWorker } from 'msw/browser'
import { http, HttpResponse } from 'msw'
export const handlers = [
http.post('/api/auth/login', () => {
return HttpResponse.json({
code: 0,
data: {
token: 'mocked_token',
},
})
}),
]
export const worker = setupWorker(...handlers)