gopher.nvim/lua/gopher/init.lua
Smirnov Olexander 6fd413c4c2 feat: add impl support
docs: add impl
2022-06-15 13:00:02 +03:00

11 lines
302 B
Lua

local tags = require "gopher.struct_tags"
local gopher = {}
gopher.install_deps = require("gopher.installer").install_all
gopher.tags_add = tags.add
gopher.tags_rm = tags.remove
gopher.mod = require "gopher.gomod"
gopher.get = require "gopher.goget"
gopher.impl = require "gopher.impl"
return gopher