package com.arms.api.account.strategy;

import com.arms.api.account.model.AlmAccount;
import com.arms.api.serverinfo.model.ServerInfo;

public interface AccountStrategy {

    AlmAccount getAccount(String connectId) throws Exception;

    AlmAccount verifyAccount(ServerInfo serverInfo) throws Exception;
}
