diff options
author | Vika <vika@fireburn.ru> | 2021-10-27 06:27:13 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2021-10-27 06:27:13 +0300 |
commit | e559259686f984fdcce5669f0ab8c6dc27d76077 (patch) | |
tree | 610543a0d741af11ccf9ebcbcaf5055973ddff72 /src/bin/pyindieblog_to_kittybox.rs | |
parent | 5545edcca7d8d67ef156c924351fd9cb912c160b (diff) | |
download | kittybox-e559259686f984fdcce5669f0ab8c6dc27d76077.tar.zst |
Deprecated Redis backend and added a database migration tool (untested, beware)
Diffstat (limited to 'src/bin/pyindieblog_to_kittybox.rs')
-rw-r--r-- | src/bin/pyindieblog_to_kittybox.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pyindieblog_to_kittybox.rs b/src/bin/pyindieblog_to_kittybox.rs index b4e2b97..303ca56 100644 --- a/src/bin/pyindieblog_to_kittybox.rs +++ b/src/bin/pyindieblog_to_kittybox.rs @@ -1,6 +1,6 @@ use anyhow::{anyhow, Context, Result}; -use mobc_redis::redis; -use mobc_redis::redis::AsyncCommands; +use redis; +use redis::AsyncCommands; use serde::{Deserialize, Serialize}; use std::collections::HashMap; use std::fs::File; |