17 lines
344 B
C#
17 lines
344 B
C#
|
|
using Microsoft.AspNetCore;
|
|
|
|
namespace Yavsc
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
var app = builder
|
|
.ConfigureServices()
|
|
.ConfigurePipeline();
|
|
app.Run();
|
|
}
|
|
}
|
|
}
|