Skip to content

Commit 0d575af

Browse files
author
Devdutt Shenoi
committed
make more pub
1 parent adb47c9 commit 0d575af

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/handlers/http/mod.rs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,28 +25,28 @@ use crate::option::CONFIG;
2525

2626
use self::{cluster::get_ingestor_info, query::Query};
2727

28-
pub(crate) mod about;
29-
mod cache;
28+
pub mod about;
29+
pub mod cache;
3030
pub mod cluster;
31-
pub(crate) mod health_check;
32-
pub(crate) mod ingest;
31+
pub mod health_check;
32+
pub mod ingest;
3333
mod kinesis;
34-
pub(crate) mod llm;
35-
pub(crate) mod logstream;
36-
pub(crate) mod middleware;
34+
pub mod llm;
35+
pub mod logstream;
36+
pub mod middleware;
3737
pub mod modal;
38-
pub(crate) mod oidc;
38+
pub mod oidc;
3939
mod otel;
40-
pub(crate) mod query;
41-
pub(crate) mod rbac;
42-
pub(crate) mod role;
43-
pub(crate) mod trino;
40+
pub mod query;
41+
pub mod rbac;
42+
pub mod role;
43+
pub mod trino;
4444
pub mod users;
4545
pub const MAX_EVENT_PAYLOAD_SIZE: usize = 10485760;
4646
pub const API_BASE_PATH: &str = "api";
4747
pub const API_VERSION: &str = "v1";
4848

49-
pub(crate) fn base_path() -> String {
49+
pub fn base_path() -> String {
5050
format!("/{API_BASE_PATH}/{API_VERSION}")
5151
}
5252

0 commit comments

Comments
 (0)