diff options
author | 2022-08-19 20:25:23 -0700 | |
---|---|---|
committer | 2022-08-19 20:25:23 -0700 | |
commit | f7d0cea466b391c467b1767d65557d3dc027c5fb (patch) | |
tree | 8dd084a81010433769733e8f14314725ac361539 /rust/scraper/src/main.rs | |
parent | 7f8e8ae189ec3e64bb9acc8273ff5388b3c80f03 (diff) | |
download | touchpad-f7d0cea466b391c467b1767d65557d3dc027c5fb.tar.gz touchpad-f7d0cea466b391c467b1767d65557d3dc027c5fb.tar.zst touchpad-f7d0cea466b391c467b1767d65557d3dc027c5fb.zip |
Adds DatabaseClient & Postgres Database Client
Diffstat (limited to '')
-rw-r--r-- | rust/scraper/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rust/scraper/src/main.rs b/rust/scraper/src/main.rs index 7d6a4a2..901a833 100644 --- a/rust/scraper/src/main.rs +++ b/rust/scraper/src/main.rs @@ -1,5 +1,6 @@ use touchpad::TouchpadLiveClient; +mod database; mod touchpad; #[tokio::main] |