mirror of
https://github.com/Noratrieb/fix-und-fertig.git
synced 2026-01-16 11:45:03 +01:00
STUFF
This commit is contained in:
parent
fb5208f734
commit
d964157bfc
14 changed files with 900 additions and 1 deletions
12
src/cli/commands/db.rs
Normal file
12
src/cli/commands/db.rs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
//! `fuf db` commands.
|
||||
|
||||
use color_eyre::Result;
|
||||
use std::{path::Path};
|
||||
|
||||
use crate::{cli::utils, workspace::Workspace};
|
||||
|
||||
pub fn save_file(workspace: &Workspace, path: &Path) -> Result<()> {
|
||||
let file = utils::read_file(path)?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue