add image recognition classification

This commit is contained in:
2025-01-06 17:42:27 +08:00
parent 6854e41b82
commit 90a68221fe
59 changed files with 19194 additions and 111 deletions

View File

@@ -4,6 +4,8 @@ import {langStore} from "@/store/modules/langStore.ts";
import {useCommentStore} from "@/store/modules/commentStore.ts";
import {useWebSocketStore} from "@/store/modules/websocketStore.ts";
import {useUpscaleStore} from "@/store/modules/upscaleStore.ts";
import {useMenuStore} from "@/store/modules/menuStore.ts";
import {useUploadStore} from "@/store/modules/uploadStore.ts";
export default function useStore() {
return {
@@ -13,5 +15,7 @@ export default function useStore() {
comment: useCommentStore(),
websocket: useWebSocketStore(),
upscale: useUpscaleStore(),
menu: useMenuStore(),
upload: useUploadStore(),
};
}