You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
360 B
16 lines
360 B
using Microsoft.AspNetCore.Builder;
|
|
using WTA.Application.Monitor.Entities;
|
|
using WTA.Shared;
|
|
using WTA.Shared.Attributes;
|
|
using WTA.Shared.Module;
|
|
|
|
namespace WTA.Application.Identity;
|
|
|
|
[Order(1)]
|
|
public class IdentityModule : BaseModule
|
|
{
|
|
public override void Configure(WebApplication app)
|
|
{
|
|
WebApp.Current.UseScheduler<JobItem>(app);
|
|
}
|
|
}
|
|
|