We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1803671 commit ba3115cCopy full SHA for ba3115c
lib/pow/store/base.ex
@@ -27,6 +27,9 @@ defmodule Pow.Store.Base do
27
quote do
28
@behaviour unquote(__MODULE__)
29
30
+ # TODO: Remove by 1.1.0
31
+ @behaviour Pow.Store.Backend.Base
32
+
33
@spec put(Config.t(), binary(), any()) :: :ok
34
def put(config, key, value),
35
do: put(config, backend_config(config), key, value)
@@ -57,9 +60,7 @@ defmodule Pow.Store.Base do
57
60
58
61
defoverridable unquote(__MODULE__)
59
62
- @behaviour Pow.Store.Backend.Base
-
- # Remove by 1.1.0
63
64
defoverridable Pow.Store.Backend.Base
65
end
66
0 commit comments