Skip to content

Commit

Permalink
moved type after struct
Browse files Browse the repository at this point in the history
  • Loading branch information
bradhanks committed Jan 12, 2024
1 parent c708a44 commit e738a19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/mix/tasks/phx.gen.auth/hashing_library.ex
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
defmodule Mix.Tasks.Phx.Gen.Auth.HashingLibrary do
@moduledoc false

defstruct [:name, :module, :mix_dependency, :test_config]

@type t :: %__MODULE__{
name: atom(),
module: module(),
mix_dependency: String.t(),
test_config: String.t()
}

defstruct [:name, :module, :mix_dependency, :test_config]

def build("bcrypt") do
lib = %__MODULE__{
name: :bcrypt,
Expand Down

0 comments on commit e738a19

Please sign in to comment.