Build auth API
This commit is contained in:
commit
dafe603a06
43 changed files with 1153 additions and 0 deletions
12
src/Robware.Api.Auth/Program.cs
Normal file
12
src/Robware.Api.Auth/Program.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using Microsoft.AspNetCore.Hosting;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
|
||||
namespace Robware.Api.Auth {
|
||||
public class Program {
|
||||
public static void Main(string[] args) =>
|
||||
Host.CreateDefaultBuilder(args)
|
||||
.ConfigureWebHostDefaults(webBuilder => {
|
||||
webBuilder.UseStartup<Startup>();
|
||||
}).Build().Run();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue