Tapper v0.3.3 Tapper.AnnotationHelpers View Source

Defines convenience functions for creating annotations, primarily for high-level api definitions such as the Tapper module.

Include these functions into a module with use:

defmodule MyModule do
  use Tapper.AnnotationHelpers

  def fun() do
    annotations = [client_receive(), tag("a", 100)]
    ...
  end
end