Metadata-Version: 2.4
Name: dkdc-home
Version: 0.1.0
License-File: LICENSE
Summary: Find and create the ~/.dkdc home directory
Author-email: Cody <cody@dkdc.io>
License-Expression: MIT
Requires-Python: >=3.11
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# dkdc-home

Find and create the `~/.dkdc` home directory.

## usage

```rust
use dkdc_home::{home, ensure};

// Get the dkdc home directory
let h = home(); // ~/.dkdc

// Get a subdirectory, creating it if needed
let db_dir = ensure("db").unwrap(); // ~/.dkdc/db/
```

Set `DKDC_HOME` to override the default location.

