aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/iferr/init.lua
blob: fbac2180326d192396817d4c39e49eeddf87cf6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
local Pkg = require "mason-core.package"
local go = require "mason-core.managers.go"

return Pkg.new {
    name = "iferr",
    desc = [[Go tool to generate if err != nil block for the current function.]],
    homepage = "https://github.com/koron/iferr",
    categories = {},
    languages = { Pkg.Lang.Go },
    install = go.packages { "github.com/koron/iferr", bin = { "iferr" } },
}