mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-13 15:34:13 +03:00
eb569b389c
* gitbutler as a lib is `gblib` now and used accordingly by `butler` * use `cargo-cranky` for shared lints across workspace until cargo supports Cargo.toml lints section in 1.75
8 lines
121 B
Rust
8 lines
121 B
Rust
use gblib::paths::DataDir;
|
|
|
|
use crate::common::temp_dir;
|
|
|
|
pub fn data_dir() -> DataDir {
|
|
DataDir::from(temp_dir())
|
|
}
|