diff options
author | Hentioe <me@bluerain.io> | 2020-10-27 23:08:20 +0800 |
---|---|---|
committer | Hentioe <me@bluerain.io> | 2020-10-27 23:08:20 +0800 |
commit | 1d973ac7500b45ceff40b63efd8497746125043c (patch) | |
tree | 74f495ce012000a5fd19a7fc01ef64536b230481 | |
parent | Hosting token refresh (diff) |
Fix module name
-rw-r--r-- | lib/azure_ex/dsl.ex (renamed from lib/azure_ex/ast.ex) | 2 | ||||
-rw-r--r-- | lib/azure_ex/endpoint.ex | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/azure_ex/ast.ex b/lib/azure_ex/dsl.ex index 9ff7b0b..5463a9d 100644 --- a/lib/azure_ex/ast.ex +++ b/lib/azure_ex/dsl.ex @@ -1,4 +1,4 @@ -defmodule AzureEx.AST do +defmodule AzureEx.DSL do @moduledoc false @path_var_re ~r/\{([^\}]+)\}/ diff --git a/lib/azure_ex/endpoint.ex b/lib/azure_ex/endpoint.ex index c880645..0d12cfd 100644 --- a/lib/azure_ex/endpoint.ex +++ b/lib/azure_ex/endpoint.ex @@ -1,8 +1,8 @@ defmodule AzureEx.Endpoint do @moduledoc false - require AzureEx.AST - import AzureEx.AST + require AzureEx.DSL + import AzureEx.DSL defendpoint( "ListAllVirtualMachines", |