Exemple #1
0
 public FronterProxyService(
     ILogger <FronterProxyService> logger,
     FronterCache cache,
     WebhookExecutorService webhookExecutor)
 {
     this.logger          = logger;
     this.fronterCache    = cache;
     this.webhookExecutor = webhookExecutor;
 }
Exemple #2
0
 public FronterCommands(
     ILogger <FronterCommands> logger,
     JulesConfig config,
     PluralKitAPIService pk,
     FronterCache cache)
 {
     this.logger = logger;
     this.config = config;
     this.pk     = pk;
     this.cache  = cache;
 }