From c0b47fd7a3fc8f8036da4410b4f95e285568a141 Mon Sep 17 00:00:00 2001 From: Oleksandr Smirnov Date: Fri, 21 Mar 2025 22:09:32 +0200 Subject: [PATCH] refactor(utils): flatten the dir of files --- lua/gopher/_utils/{runner => }/gocmd.lua | 0 lua/gopher/_utils/{runner/init.lua => runner.lua} | 0 lua/gopher/init.lua | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename lua/gopher/_utils/{runner => }/gocmd.lua (100%) rename lua/gopher/_utils/{runner/init.lua => runner.lua} (100%) diff --git a/lua/gopher/_utils/runner/gocmd.lua b/lua/gopher/_utils/gocmd.lua similarity index 100% rename from lua/gopher/_utils/runner/gocmd.lua rename to lua/gopher/_utils/gocmd.lua diff --git a/lua/gopher/_utils/runner/init.lua b/lua/gopher/_utils/runner.lua similarity index 100% rename from lua/gopher/_utils/runner/init.lua rename to lua/gopher/_utils/runner.lua diff --git a/lua/gopher/init.lua b/lua/gopher/init.lua index dfcefc9..0028dcc 100644 --- a/lua/gopher/init.lua +++ b/lua/gopher/init.lua @@ -12,7 +12,7 @@ local log = require "gopher._utils.log" local tags = require "gopher.struct_tags" local tests = require "gopher.gotests" -local gocmd = require("gopher._utils.runner.gocmd").run +local gocmd = require("gopher._utils.gocmd").run local gopher = {} ---@toc_entry Setup