1 Star 0 Fork 405

书画人生/考试君 - 在线考试系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Startup.cs 645 Bytes
一键复制 编辑 原始数据 按行查看 历史
using ExamKing.Core.Providers;
namespace ExamKing.WebApp.Student
{
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services
.AddControllersWithViews()
.AddUnifyResult<RESTfulResultProvider>();
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
app.UseEndpoints(endpoints =>
{
endpoints.MapControllerRoute(
name: "default",
pattern: "{controller=Home}/{action=Index}/{id?}");
});
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/pailou/ExamKing.git
git@gitee.com:pailou/ExamKing.git
pailou
ExamKing
考试君 - 在线考试系统
master

搜索帮助