mirror of
https://github.com/get-drexa/drive.git
synced 2025-12-01 14:01:40 +00:00
9 lines
246 B
TypeScript
9 lines
246 B
TypeScript
import { authenticatedMutation } from "./functions"
|
|
import * as FileSystem from "./model/filesystem"
|
|
|
|
export const ensureRootDirectory = authenticatedMutation({
|
|
handler: async (ctx) => {
|
|
return await FileSystem.ensureRootDirectory(ctx)
|
|
},
|
|
})
|