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 6002dba commit ff8d443Copy full SHA for ff8d443
lib/behaviours/tentacat_behaviour.ex
@@ -1,4 +1,7 @@
1
defmodule ElixirScript.Behaviours.TentacatBehaviour.ClientBehaviour do
2
+ @moduledoc """
3
+ Abstract behaviour of Tentacat
4
+ """
5
@callback new() :: Tentacat.Client.t()
6
@callback new(%{access_token: binary()}) :: Tentacat.Client.t()
7
end
lib/script_runner.ex
defmodule ElixirScript.ScriptRunnerBehaviour do
+ Abstract behaviour of ScriptRunner.
@callback run(script :: String.t(), opts :: Keyword.t()) :: any()
0 commit comments