using Nancy;
namespace Learun.Application.WebApi
{
///
/// 版 本 Learun-ADMS V7.0.0 数字化智慧校园
/// Copyright (c) 2013-2018 北京泉江科技有限公司
/// 创建人:数字化智慧校园-框架开发组
/// 日 期:2017.05.12
/// 描 述:默认页面
///
public class Index : BaseApi
{
public Index()
: base()
{
Get["/"] = MainIndex;
Get["/index.html"] = MainIndex;
Get["/bgimg"] = BgImg;
}
///
/// 默认开始页面
///
///
///
private Response MainIndex(dynamic _)
{
return Response.AsFile("index.html");
}
///
/// 默认开始页面图片
///
///
///
private Response BgImg(dynamic _)
{
return Response.AsImage("port.png");
}
}
}