chore: 添加 Chat 類型的常量定義

This commit is contained in:
CrescentLeaf
2025-09-22 23:08:41 +08:00
parent 10da3b8e77
commit b82d32cad7

3
server/data/ChatType.ts Normal file
View File

@@ -0,0 +1,3 @@
type ChatType = 'private' | 'group'
export default ChatType