feat: add dlv as dep

This commit is contained in:
Smirnov Oleksandr 2022-09-22 17:54:49 +03:00
parent 93be1b1d6f
commit aa535e7ed1
3 changed files with 3 additions and 0 deletions

View file

@ -7,6 +7,7 @@ local M = {
gotests = "gotests",
impl = "impl",
iferr = "iferr",
dlv = "dlv",
},
},
}

View file

@ -15,6 +15,7 @@ local M = {
{ bin = c.gomodifytags, help = "required for modify struct tags" },
{ bin = c.impl, help = "required for interface implementing" },
{ bin = c.gotests, help = "required for test(s) generation" },
{ bin = c.dlv, help = "required for debugger(nvim-dap)" },
},
},
}

View file

@ -5,6 +5,7 @@ local urls = {
impl = "github.com/josharian/impl",
gotests = "github.com/cweill/gotests/...",
iferr = "github.com/koron/iferr",
dlv = "github.com/go-delve/delve/cmd/dlv",
}
---@param pkg string