Skip to content

Commit

Permalink
refactor: rename wrapper to main
Browse files Browse the repository at this point in the history
  • Loading branch information
jellydn committed Oct 26, 2023
1 parent 8526eff commit 6ed95b3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/hurl/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ local M = {}
function M.setup(options)
_HURL_CFG = vim.tbl_extend('force', _HURL_CFG, options or {})

require('hurl.wrapper').setup()
require('hurl.main').setup()
end

return M
File renamed without changes.
2 changes: 1 addition & 1 deletion test/hurl_spec.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local hurl = require('hurl.wrapper')
local hurl = require('hurl.main')

describe('Hurl wrapper', function()
it('should be able to load', function()
Expand Down

0 comments on commit 6ed95b3

Please sign in to comment.