style[convex]: reorganize imports

This commit is contained in:
2025-10-20 00:17:50 +00:00
parent d0893e13be
commit 0307cbbf61
2 changed files with 10 additions and 7 deletions

View File

@@ -1,9 +1,12 @@
import { v } from "convex/values"
import type { Id } from "@fileone/convex/dataModel" import type { Id } from "@fileone/convex/dataModel"
import { authenticatedMutation, authenticatedQuery, authorizedGet } from "./functions" import { v } from "convex/values"
import {
authenticatedMutation,
authenticatedQuery,
authorizedGet,
} from "./functions"
import * as Directories from "./model/directories" import * as Directories from "./model/directories"
import * as Files from "./model/files" import * as Files from "./model/files"
import type { FileSystemItem } from "./shared/filesystem"
export const generateUploadUrl = authenticatedMutation({ export const generateUploadUrl = authenticatedMutation({
handler: async (ctx) => { handler: async (ctx) => {

View File

@@ -1,5 +1,5 @@
import { v } from "convex/values" import { v } from "convex/values"
import type { Doc, Id } from "@fileone/convex/dataModel" import type { Doc, Id } from "../_generated/dataModel"
import { import {
type AuthenticatedMutationCtx, type AuthenticatedMutationCtx,
type AuthenticatedQueryCtx, type AuthenticatedQueryCtx,