refactor: move profile.rs -> url.rs to new module

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-10-05 13:44:49 -04:00
parent e20861f8d6
commit 3ccd6a97a4
3 changed files with 4 additions and 1 deletions

View File

@@ -77,7 +77,7 @@ pub use note::{
pub use notecache::{CachedNote, NoteCache};
pub use options::NotedeckOptions;
pub use persist::*;
pub use profile::get_profile_url;
pub use profile::*;
pub use relay_debug::RelayDebugView;
pub use relayspec::RelaySpec;
pub use result::Result;

View File

@@ -0,0 +1,3 @@
mod url;
pub use url::{get_profile_url, no_pfp_url, unwrap_profile_url};