18 lines
294 B
C#
18 lines
294 B
C#
|
|
using Owin;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace OC.NancyWeb
|
|||
|
|
{
|
|||
|
|
public class Startup
|
|||
|
|
{
|
|||
|
|
public void Configuration(IAppBuilder app)
|
|||
|
|
{
|
|||
|
|
app.UseNancy();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|