chore: rename from oauth2_token_manager to oauth2_token_agent to avoid conflict

This commit is contained in:
Matt Franczak
2024-03-25 10:59:15 -05:00
parent e21ad2d797
commit e8e12ca521
7 changed files with 28 additions and 28 deletions

View File

@@ -1,4 +1,4 @@
defmodule OAuth2TokenManager.TokenAgent do
defmodule OAuth2TokenAgent.TokenAgent do
@moduledoc """
Defines the Agent used to manage the token and the struct it uses to store its state
"""
@@ -7,7 +7,7 @@ defmodule OAuth2TokenManager.TokenAgent do
use TypedStruct
alias __MODULE__
alias OAuth2TokenManager.TokenRefreshStrategy
alias OAuth2TokenAgent.TokenRefreshStrategy
alias OAuth2.{AccessToken, Client, Error, Response}
require Logger

View File

@@ -1,4 +1,4 @@
defmodule OAuth2TokenManager.TokenRefreshStrategy do
defmodule OAuth2TokenAgent.TokenRefreshStrategy do
@moduledoc """
Module defining a struct for representing strategies for refreshing tokens and
the functions for applying them