feat: go through some TODOs

This commit is contained in:
spiral
2021-11-26 22:02:58 -05:00
parent 04d78e3348
commit 4450ae4214
21 changed files with 193 additions and 250 deletions

View File

@@ -13,12 +13,10 @@ namespace PluralKit.Bot;
public class MemberEdit
{
private readonly HttpClient _client;
private readonly IDatabase _db;
private readonly ModelRepository _repo;
public MemberEdit(IDatabase db, ModelRepository repo, HttpClient client)
public MemberEdit(ModelRepository repo, HttpClient client)
{
_db = db;
_repo = repo;
_client = client;
}