From 23d1aaad55f1a114350822d9d9619d9869045b1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81d=C3=A1m=20Kov=C3=A1cs?= Date: Mon, 3 Mar 2025 06:52:47 +0100 Subject: [PATCH] chore: move everything out from src --- .gitignore | 1 + src/app.go => app.go | 0 {src/command => command}/command.go | 0 {src/command => command}/info.go | 0 {src/command => command}/install.go | 0 {src/command => command}/link.go | 0 {src/config => config}/moduleConfiguration.go | 0 src/go.mod => go.mod | 0 src/go.sum => go.sum | 0 {src/helpers => helpers}/osinfo.go | 0 {src/helpers => helpers}/path.go | 0 {src/helpers => helpers}/repo.go | 0 src/main.go => main.go | 0 {src/models => models}/moduleInfo.go | 0 {src/test_module => test_module}/.alma-config.json | 0 {src/test_module => test_module}/test.txt | 0 {src/test_module => test_module}/test2.txt | 0 {src/test_module => test_module}/test_folder/test1.txt | 0 {src/test_module => test_module}/test_folder2/test3.txt | 0 19 files changed, 1 insertion(+) rename src/app.go => app.go (100%) rename {src/command => command}/command.go (100%) rename {src/command => command}/info.go (100%) rename {src/command => command}/install.go (100%) rename {src/command => command}/link.go (100%) rename {src/config => config}/moduleConfiguration.go (100%) rename src/go.mod => go.mod (100%) rename src/go.sum => go.sum (100%) rename {src/helpers => helpers}/osinfo.go (100%) rename {src/helpers => helpers}/path.go (100%) rename {src/helpers => helpers}/repo.go (100%) rename src/main.go => main.go (100%) rename {src/models => models}/moduleInfo.go (100%) rename {src/test_module => test_module}/.alma-config.json (100%) rename {src/test_module => test_module}/test.txt (100%) rename {src/test_module => test_module}/test2.txt (100%) rename {src/test_module => test_module}/test_folder/test1.txt (100%) rename {src/test_module => test_module}/test_folder2/test3.txt (100%) diff --git a/.gitignore b/.gitignore index 316192b..64b1255 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ src/alma +alma diff --git a/src/app.go b/app.go similarity index 100% rename from src/app.go rename to app.go diff --git a/src/command/command.go b/command/command.go similarity index 100% rename from src/command/command.go rename to command/command.go diff --git a/src/command/info.go b/command/info.go similarity index 100% rename from src/command/info.go rename to command/info.go diff --git a/src/command/install.go b/command/install.go similarity index 100% rename from src/command/install.go rename to command/install.go diff --git a/src/command/link.go b/command/link.go similarity index 100% rename from src/command/link.go rename to command/link.go diff --git a/src/config/moduleConfiguration.go b/config/moduleConfiguration.go similarity index 100% rename from src/config/moduleConfiguration.go rename to config/moduleConfiguration.go diff --git a/src/go.mod b/go.mod similarity index 100% rename from src/go.mod rename to go.mod diff --git a/src/go.sum b/go.sum similarity index 100% rename from src/go.sum rename to go.sum diff --git a/src/helpers/osinfo.go b/helpers/osinfo.go similarity index 100% rename from src/helpers/osinfo.go rename to helpers/osinfo.go diff --git a/src/helpers/path.go b/helpers/path.go similarity index 100% rename from src/helpers/path.go rename to helpers/path.go diff --git a/src/helpers/repo.go b/helpers/repo.go similarity index 100% rename from src/helpers/repo.go rename to helpers/repo.go diff --git a/src/main.go b/main.go similarity index 100% rename from src/main.go rename to main.go diff --git a/src/models/moduleInfo.go b/models/moduleInfo.go similarity index 100% rename from src/models/moduleInfo.go rename to models/moduleInfo.go diff --git a/src/test_module/.alma-config.json b/test_module/.alma-config.json similarity index 100% rename from src/test_module/.alma-config.json rename to test_module/.alma-config.json diff --git a/src/test_module/test.txt b/test_module/test.txt similarity index 100% rename from src/test_module/test.txt rename to test_module/test.txt diff --git a/src/test_module/test2.txt b/test_module/test2.txt similarity index 100% rename from src/test_module/test2.txt rename to test_module/test2.txt diff --git a/src/test_module/test_folder/test1.txt b/test_module/test_folder/test1.txt similarity index 100% rename from src/test_module/test_folder/test1.txt rename to test_module/test_folder/test1.txt diff --git a/src/test_module/test_folder2/test3.txt b/test_module/test_folder2/test3.txt similarity index 100% rename from src/test_module/test_folder2/test3.txt rename to test_module/test_folder2/test3.txt