chore (backend-rs): make internal functions/modules private
This commit is contained in:
parent
0e9d7f388a
commit
35f30d9895
2 changed files with 2 additions and 2 deletions
|
@ -78,7 +78,7 @@ pub async fn update_antennas_on_new_note(
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn add_note_to_antenna(antenna_id: &str, note: &Note) -> Result<(), Error> {
|
async fn add_note_to_antenna(antenna_id: &str, note: &Note) -> Result<(), Error> {
|
||||||
// for timeline API
|
// for timeline API
|
||||||
redis_conn()
|
redis_conn()
|
||||||
.await?
|
.await?
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
pub mod fetch;
|
pub mod fetch;
|
||||||
pub mod generate;
|
pub mod generate;
|
||||||
pub mod schema;
|
mod schema;
|
||||||
|
|
Loading…
Reference in a new issue