chore: cleanup unused config properties

This commit is contained in:
seth 2024-01-27 23:03:34 -05:00
parent 2acb319821
commit 72e171b960
No known key found for this signature in database
GPG key ID: D31BD0D494BBEE86
6 changed files with 23 additions and 152 deletions

View file

@ -41,7 +41,7 @@ pub struct Data {
impl Data {
pub fn new() -> Result<Self> {
let config = Config::new_from_env()?;
let config = Config::new_from_env();
let storage = Storage::new(&config.redis_url)?;
let octocrab = octocrab::instance();