mirror of
https://github.com/internetee/epp_proxy.git
synced 2025-08-22 07:00:47 +02:00
Describe Roda app that is used for testing. Describe new feature for handling certificate file path
8 lines
177 B
Ruby
8 lines
177 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "rack/unreloader"
|
|
|
|
Unreloader = Rack::Unreloader.new() { EppServer }
|
|
Unreloader.require("epp_server.rb") { "EppServer" }
|
|
|
|
run(Unreloader)
|