# frozen_string_literal: true require 'logger' module Cryptum # This plugin is used to parse Coinbase Pro Web Socket Events in the HTTP Response module Event autoload :BotConf, 'cryptum/event/bot_conf' autoload :Buy, 'cryptum/event/buy' autoload :Cancel, 'cryptum/event/cancel' autoload :Exit, 'cryptum/event/exit' autoload :GTFO, 'cryptum/event/gtfo' autoload :History, 'cryptum/event/history' autoload :KeyPress, 'cryptum/event/key_press' autoload :OrderBook, 'cryptum/event/order_book' autoload :Pane, 'cryptum/event/pane' autoload :Scroll, 'cryptum/event/scroll' autoload :Sell, 'cryptum/event/sell' # Display Usage for this Module public_class_method def self.help constants.sort end end end