pub enum FileEntry {
  Dir(Map[String, FileEntry])
  File(Bytes)
} derive(Show)