mirror of
https://github.com/yawaflua/SkinsApi.git
synced 2025-12-10 20:39:35 +02:00
Add project files.
This commit is contained in:
22
Program.cs
Normal file
22
Program.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
namespace SkinsApi
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
Host.CreateDefaultBuilder(args)
|
||||
.ConfigureWebHost(builder =>
|
||||
{
|
||||
builder.UseKestrel(kestrelBuilder => kestrelBuilder.ListenAnyIP(80));
|
||||
builder.UseStartup<Startup>();
|
||||
builder.ConfigureLogging(k =>
|
||||
{
|
||||
k.SetMinimumLevel(LogLevel.Warning);
|
||||
});
|
||||
})
|
||||
.Build()
|
||||
.Run();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user