refactor(server): rename tests folder

This commit is contained in:
RainbowBird
2026-03-28 02:25:44 +08:00
committed by RainbowBird
parent eab60d0bdb
commit 0a2fefc304
28 changed files with 33 additions and 57 deletions
+4 -4
View File
@@ -2,8 +2,8 @@ import type Redis from 'ioredis'
import type { Env } from './libs/env'
import type { OtelInstance } from './libs/otel'
import type { BillingMqService } from './services/billing-mq'
import type { BillingService } from './services/billing-service'
import type { BillingMqService } from './services/billing/billing-mq'
import type { BillingService } from './services/billing/billing-service'
import type { CharacterService } from './services/characters'
import type { ChatService } from './services/chats'
import type { ConfigKVService } from './services/config-kv'
@@ -40,8 +40,8 @@ import { createFluxRoutes } from './routes/flux'
import { createProviderRoutes } from './routes/providers'
import { createStripeRoutes } from './routes/stripe'
import { createV1CompletionsRoutes } from './routes/v1completions'
import { createBillingMqService } from './services/billing-mq'
import { createBillingService } from './services/billing-service'
import { createBillingMqService } from './services/billing/billing-mq'
import { createBillingService } from './services/billing/billing-service'
import { createCharacterService } from './services/characters'
import { createChatService } from './services/chats'
import { createConfigKVService } from './services/config-kv'