8 lines
122 B
Ruby
8 lines
122 B
Ruby
# frozen_string_literal: true
|
|
|
|
module BBS
|
|
class Config
|
|
attr_accessor :screens_dir, :flow, :on_session_end
|
|
end
|
|
end
|