namespace Service.Cloud.Handler;
public interface IBaseHandler
{
public bool CanHandle(string cmd);
public void Handle(string t);
}