10 lines
214 B
Ruby
10 lines
214 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'peatio/app'
|
|
|
|
Peatio::App.define do |config|
|
|
config.set(:deposit_funds_locked, 'false', type: :bool)
|
|
config.set(:app_name, 'Dena')
|
|
config.set(:domain, 'Zagros.com')
|
|
end
|