mayuki / Rin

Request/response Inspector middleware for ASP.NET Core
MIT License
650 stars 24 forks source link

feat: Introduce IRinBuilder #50

Closed mayuki closed 4 years ago

mayuki commented 4 years ago

Breaking changes

IServiceCollection.AddRinRedisStorage extension method is removed

Use IRinBuilder.UseRedisStorage instead.

services.AddRin()
    .UseRedisStorage(options =>
    {
        ...
    });