mirror of
https://github.com/aljazceru/notedeck.git
synced 2026-01-25 03:04:20 +01:00
8 lines
159 B
Rust
8 lines
159 B
Rust
use nostrdb::NoteKey;
|
|
|
|
/// App routing. These describe different places you can go inside Notedeck.
|
|
pub enum Route {
|
|
ManageAccount,
|
|
Thread(NoteKey),
|
|
}
|