15 lines
313 B
Ruby
15 lines
313 B
Ruby
# frozen_string_literal: true
|
|
|
|
module BBS
|
|
class Config
|
|
attr_accessor :screens_dir, :flow, :on_session_end,
|
|
:port, :theme, :mouse, :idle_seconds
|
|
|
|
def initialize
|
|
@port = (ENV['BBS_PORT'] || 2323).to_i
|
|
@mouse = false
|
|
@idle_seconds = nil
|
|
end
|
|
end
|
|
end
|