diff options
| author | Mroik <mroik@delayed.space> | 2026-04-01 00:49:31 +0200 |
|---|---|---|
| committer | Mroik <mroik@delayed.space> | 2026-04-13 06:55:04 +0200 |
| commit | 7294e5944c2e5620c47d1ab014e217c5ee05b3a6 (patch) | |
| tree | 7cff945aef488565a18d7129e3af278a9332b596 /src/main.rs | |
| parent | 8f8fd10dc2b185ca0a8e8908229c4d4bbefd70b7 (diff) | |
Implement User model
The mailing list will need to save the data of the subscribers for them
to receive the emails.
Add User model with its DB interactions.
Signed-off-by: Mroik <mroik@delayed.space>
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 189b68b..60b75af 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,5 @@ mod database; +mod list; fn main() { println!("Hello, world!"); |
