tweak the db model for watches, add handler skeletons

This commit is contained in:
Joe Ardent 2023-06-06 14:08:49 -07:00
parent 1a4ffaa99d
commit 898e8d381e
1 changed files with 13 additions and 0 deletions

View File

@ -1 +1,14 @@
/// Add a Watch to the whole system
pub async fn post_add_watch() {}
/// 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() {}