You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
807 B

2 years ago
/*----------------------------------------------------------------
Copyright (C) 2023 Senparc
MemcachedApplicationBuilderExtensions.cs
Memcached
Senparc - 20180222
----------------------------------------------------------------*/
#if !NET462
using Enyim.Caching;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Microsoft.AspNetCore.Builder
{
public static class MemcachedApplicationBuilderExtensions
{
public static IApplicationBuilder UseSenparcMemcached(this IApplicationBuilder app)
{
app.UseEnyimMemcached();
return app;
}
}
}
#endif