Xcribe.Information.xcribe_info

You're seeing just the macro xcribe_info, go back to Xcribe.Information module for more information.
Link to this macro

xcribe_info(list)

View Source (macro)

Defines the API custom information.

This information will be used to build the final documentation.

The required info are:

  • name - a name for your API.
  • description - a description about your API.
  • host - your API host url

Example:

defmodule YourModuleInformation do
  use Xcribe.Information

  xcribe_info do
    name "Your awesome API"
    description "The best API in the world"
    host "http://your-api.us"
  end
end