# frozen_string_literal: true module Cryptum # This plugin is used to Cancel Open Limit Orders module Option # Keep Last Event History When Terminal Resize Occuers class Choice attr_accessor :autotrade, :driver_name, :list_products, :proxy, :repo_root, :sandbox, :symbol, :market_trend_reset rescue Interrupt # Exit Gracefully if CTRL+C is Pressed During Session Cryptum.exit_gracefully(which_self: self) rescue StandardError => e # Produce a Stacktrace for anything else Curses.close_screen raise e end end end