22 lines
427 B
C#
22 lines
427 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Microsoft.AspNetCore.Hosting.Fakes
|
|
{
|
|
public class StartupNoServicesNoInterface
|
|
{
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
|
|
}
|
|
|
|
public void Configure(IApplicationBuilder app)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|