function newFolder(path: string): Folder {
    return new Folder(path);
}

export default newFolder;
