-module(glethers@contract). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]). -export_type([contract/0, function_/0]). -type contract() :: {contract, list(function_())}. -type function_() :: {function, list(binary())}.