mirror of
https://github.com/get-drexa/drive.git
synced 2025-11-30 21:41:39 +00:00
9 lines
274 B
TypeScript
9 lines
274 B
TypeScript
import { authenticatedMutation } from "./functions"
|
|
import { ensureRootDirectory as ensureRootDirectoryImpl } from "./model/filesystem"
|
|
|
|
export const ensureRootDirectory = authenticatedMutation({
|
|
handler: async (ctx) => {
|
|
return await ensureRootDirectoryImpl(ctx)
|
|
},
|
|
})
|