Compare commits

...
1 Commits
Author SHA1 Message Date
xrain a6f32c6e43 add storage check on configure 2021-06-03 15:35:26 +08:00
+5
View File
@@ -185,6 +185,11 @@ namespace SimApi
builder.UseForwardedHeaders();
}
//请求一下检测存储错误
if(options.EnableSimApiStorage){
builder.ApplicationServices.GetService<SimApiStorage>();
}
return builder;
}
}