#include"filesystem/ext2/ext2_filesystem.hpp"#include"devices/device.hpp"namespacefilesystem::ext2{autoext2_filesystem::mount(devices::device*device)->int{if(!device){return-1;// TODO BA-FS26 panic or errorcode?}// TODO BA-FS26 implementreturn0;}}// namespace filesystem::ext2