feat: go through some TODOs

This commit is contained in:
spiral 2021-11-26 22:02:58 -05:00
parent 04d78e3348
commit 4450ae4214
No known key found for this signature in database
GPG key ID: A6059F0CA0E1BD31
21 changed files with 193 additions and 250 deletions

View file

@ -4,14 +4,12 @@ namespace PluralKit.Bot;
public class System
{
private readonly IDatabase _db;
private readonly EmbedService _embeds;
private readonly ModelRepository _repo;
public System(EmbedService embeds, IDatabase db, ModelRepository repo)
public System(EmbedService embeds, ModelRepository repo)
{
_embeds = embeds;
_db = db;
_repo = repo;
}