using Innoactive.AccessControl.OAuth2;
using UnityEngine;

namespace Innoactive.AccessControl.Authorizer
{
    public class EditorAuthorizer : IAuthorizer
    {
        public bool Authorize(OAuth2ClientSettings clientSettings)
        {
            Debug.Log("Authorization always succeeds on editor.");
            return true;
        }
    }
}
