Skip to content

Commit

Permalink
Use require_relative for local files (closes #9).
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed Jul 30, 2024
1 parent fbd0794 commit ce157eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/ronin/listener/dns.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# along with ronin-listener-dns. If not, see <https://www.gnu.org/licenses/>.
#

require 'ronin/listener/dns/server'
require_relative 'dns/server'

module Ronin
module Listener
Expand Down
2 changes: 1 addition & 1 deletion lib/ronin/listener/dns/server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# along with ronin-listener-dns. If not, see <https://www.gnu.org/licenses/>.
#

require 'ronin/listener/dns/query'
require_relative 'query'

require 'async/dns'

Expand Down

0 comments on commit ce157eb

Please sign in to comment.