1use crate::error::Result; 2 3use clap::Clap; 4 5/// Save the markers in the specified directory into a `.lurien` file 6#[derive(Clap, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)] 7pub struct Save {} 8 9pub fn save(_args: &Save) -> Result<()> { 10 todo!(); 11}