Skip to content

Commit 9ece833

Browse files
committed
rename https to cert_util
1 parent d170051 commit 9ece833

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

iroh-gateway/src/https.rs renamed to iroh-gateway/src/cert_util.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//! Utilities for loading certificates and keys.
12
use anyhow::{Context, Result};
23
use std::path::Path;
34

iroh-gateway/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ use tower_service::Service;
4242
use url::Url;
4343

4444
use crate::{
45-
https::{load_certs, load_secret_key},
45+
cert_util::{load_certs, load_secret_key},
4646
ranges::{slice, to_byte_range, to_chunk_range},
4747
};
48-
mod https;
48+
mod cert_util;
4949
mod ranges;
5050

5151
// Make our own error that wraps `anyhow::Error`.

0 commit comments

Comments
 (0)