This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
473 additions
and
11 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
mod new_subscriber; | ||
mod subscriber_email; | ||
mod subscriber_name; | ||
|
||
pub use new_subscriber::NewSubscriber; | ||
pub use subscriber_email::SubscriberEmail; | ||
pub use subscriber_name::SubscriberName; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
use super::{SubscriberEmail, SubscriberName}; | ||
use serde::Deserialize; | ||
|
||
#[derive(Deserialize)] | ||
pub struct NewSubscriber { | ||
pub email: SubscriberEmail, | ||
pub name: SubscriberName, | ||
} |
Oops, something went wrong.