move FALLBACK_PUBKEY

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-07-01 16:24:18 -04:00
parent 320dedc8bd
commit 4914c637ce
4 changed files with 14 additions and 7 deletions

View File

@@ -1,3 +1,10 @@
pub mod accounts;
pub mod mute;
pub mod relay;
pub const FALLBACK_PUBKEY: fn() -> enostr::Pubkey = || {
enostr::Pubkey::new([
170, 115, 48, 129, 228, 240, 247, 157, 212, 48, 35, 216, 152, 50, 101, 89, 63, 43, 65, 169,
136, 103, 28, 252, 239, 63, 72, 155, 145, 173, 147, 254,
])
};

View File

@@ -36,6 +36,7 @@ mod zaps;
pub use account::accounts::{
AccountData, Accounts, AccountsAction, AddAccountAction, SwitchAccountAction,
};
pub use account::FALLBACK_PUBKEY;
pub use app::{App, AppAction, Notedeck};
pub use args::Args;
pub use context::AppContext;