# frozen_string_literal: true module Cryptum # This plugin is used to parse Coinbase Pro Web Socket Events in the HTTP Response module Event require 'cryptum/event/bot_conf' require 'cryptum/event/buy' require 'cryptum/event/cancel' require 'cryptum/event/exit' require 'cryptum/event/gtfo' require 'cryptum/event/history' require 'cryptum/event/key_press' require 'cryptum/event/order_book' require 'cryptum/event/pane' require 'cryptum/event/parse' require 'cryptum/event/scroll' require 'cryptum/event/sell' # Display Usage for this Module public_class_method def self.help constants.sort end end end