chore (backend-rs): make internal functions/modules private

This commit is contained in:
naskya 2024-05-24 22:18:32 +09:00
parent 0e9d7f388a
commit 35f30d9895
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C
2 changed files with 2 additions and 2 deletions

View file

@ -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?

View file

@ -1,3 +1,3 @@
pub mod fetch; pub mod fetch;
pub mod generate; pub mod generate;
pub mod schema; mod schema;