15 lines
290 B
C#
15 lines
290 B
C#
namespace CloudGaming.Core.EntityFramework;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class CoreEntityFrameworkStartup : StartupModule<CoreEntityFrameworkStartup>
|
|
{
|
|
|
|
public override void Configure(WebApplication webApplication)
|
|
{
|
|
base.Configure(webApplication);
|
|
|
|
}
|
|
}
|