using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace Logger.Services.Interfaces { public interface ILoggerServices { Task Invoke(HttpContext context); } }