Generate htpasswd files with bcrypt passwords.
```rust use std::error::Error; use passivizedhtpasswd::errors::HtpasswdError; use passivizedhtpasswd::Htpasswd;
fn setup_credentials() -> Result<(), Box
credentials.set("John Doe", "Don't hardcode")?;
credentials.write_to_path("www/.htpasswd")?;
Ok(())
} ```