feat: create root dir on acc registration

This commit is contained in:
2025-11-30 17:37:59 +00:00
parent 0b8aee5d60
commit fb8e91dd47
2 changed files with 7 additions and 0 deletions

View File

@@ -41,6 +41,8 @@ type FileContent struct {
blobKey blob.Key
}
const RootDirectoryName = "root"
func FileContentFromReader(reader io.Reader) FileContent {
return FileContent{reader: reader}
}