db, add channel and feed; user.get_feeds
Adds the primary functionality for channel and feed Also adds a function to user to get the feeds associated with a user.
This commit is contained in:
parent
292b974f1e
commit
ac6e71eb62
7 changed files with 1400 additions and 17 deletions
|
|
@ -1,5 +1,9 @@
|
|||
mod user;
|
||||
pub use user::User;
|
||||
mod feed;
|
||||
pub use feed::Feed;
|
||||
mod channel;
|
||||
pub use channel::Channel;
|
||||
|
||||
macro_rules! define_key {
|
||||
($name:ident) => {
|
||||
|
|
@ -9,3 +13,5 @@ macro_rules! define_key {
|
|||
}
|
||||
|
||||
define_key!(UserKey);
|
||||
define_key!(FeedKey);
|
||||
define_key!(ChannelKey);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue