增加了SSO,现在token也可以从query的token读入

This commit is contained in:
2026-05-04 15:35:47 +08:00
parent e3fc7db01c
commit fc7b38ac4e
8 changed files with 73 additions and 41 deletions
+8
View File
@@ -0,0 +1,8 @@
using SimApi.Communications;
namespace SimApi.Interfaces;
public interface ISimApiAuthChecker
{
public void Run(SimApiLoginItem loginItem, string token);
}