diff options
| author | Mroik <mroik@delayed.space> | 2026-03-31 21:32:23 +0200 |
|---|---|---|
| committer | Mroik <mroik@delayed.space> | 2026-04-13 06:55:04 +0200 |
| commit | 8f8fd10dc2b185ca0a8e8908229c4d4bbefd70b7 (patch) | |
| tree | d86307f33b62e65bf97f41bbd7c84e22008c5f69 /src/main.rs | |
| parent | e37cb31107a33a720758e3265801e9367332ec33 (diff) | |
Add scaffolding for DB interactions
The mailing list will need to save various data to operate for things
such as the subscriber's email.
Add database interaction machanism.
Signed-off-by: Mroik <mroik@delayed.space>
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index e7a11a9..189b68b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,5 @@ +mod database; + fn main() { println!("Hello, world!"); } |
