what2watch/src/watches/handlers.rs

15 lines
317 B
Rust
Raw Normal View History

/// Add a Watch to the whole system
pub async fn post_add_watch() {}
2023-06-05 23:32:42 +00:00
/// A single Watch
pub async fn get_watch() {}
/// everything the user has saved
pub async fn get_my_watches() {}
/// Add a Watch to user's to-watch list
pub async fn post_add_to_mine() {}
/// list of all watches?
pub async fn get_watches() {}