6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-08 11:04:19 +00:00

Update incorrect module name - Go requires a domain-based path for public modules

This commit is contained in:
Grzegorz Dlugoszewski
2025-08-25 20:22:12 +02:00
parent 152e91444b
commit 0df82ba272
13 changed files with 33 additions and 23 deletions

View File

@@ -2,11 +2,12 @@ package main
import (
"fmt"
"git-get/pkg"
"git-get/pkg/cfg"
"git-get/pkg/git"
"os"
"github.com/grdl/git-get/pkg"
"github.com/grdl/git-get/pkg/cfg"
"github.com/grdl/git-get/pkg/git"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)