Skip to main content

oseda_cli/cmd/
mod.rs

1use std::path::Path;
2
3use crate::config;
4
5pub mod check;
6pub mod deploy;
7pub mod dev;
8pub mod export;
9pub mod fork;
10pub mod init;
11pub mod run;
12pub mod update;
13
14pub fn is_cwd_oseda_project() -> bool {
15    Path::new(config::CONFIG_FILE_NAME)
16        .try_exists()
17        .is_ok_and(|exists| exists)
18}