mirror of
https://github.com/fergalmoran/Quartzmin.git
synced 2025-12-22 09:27:38 +00:00
22 lines
477 B
C#
22 lines
477 B
C#
using Microsoft.Owin;
|
|
using Owin;
|
|
using Quartzmin.AspNet;
|
|
|
|
[assembly: OwinStartup(typeof(Startup))]
|
|
|
|
namespace Quartzmin.AspNet
|
|
{
|
|
public class Startup
|
|
{
|
|
public void Configuration(IAppBuilder app)
|
|
{
|
|
app.UseQuartzmin(new QuartzminOptions()
|
|
{
|
|
Scheduler = DemoScheduler.Create().Result,
|
|
|
|
DefaultDateFormat = "dd.MM.yyyy",
|
|
VirtualPathRoot = "/test",
|
|
});
|
|
}
|
|
}
|
|
} |