# 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 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' # 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 :Parse, 'cryptum/event/parse' # 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