Skip to content

Commit

Permalink
Switch to using require_relative (closes #5).
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed Feb 12, 2025
1 parent eef943e commit f2fb91f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/ronin/dns/proxy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# along with ronin-dns-proxy. If not, see <https://www.gnu.org/licenses/>.
#

require 'ronin/dns/proxy/server'
require_relative 'proxy/server'

module Ronin
module DNS
Expand Down
4 changes: 2 additions & 2 deletions lib/ronin/dns/proxy/server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
# along with ronin-dns-proxy. If not, see <https://www.gnu.org/licenses/>.
#

require 'ronin/dns/proxy/rule'
require 'ronin/support/network/dns'
require_relative 'rule'

require 'ronin/support/network/dns'
require 'async/dns'

module Ronin
Expand Down

0 comments on commit f2fb91f

Please sign in to comment.