updated imports

This commit is contained in:
raj 2023-10-22 01:24:16 +05:30
parent 51ecfe22a0
commit 9f5db44a6c
3 changed files with 10 additions and 7 deletions

View File

@ -3,9 +3,10 @@ package controller
import ( import (
"fmt" "fmt"
"os/exec" "os/exec"
projectconfig "pee/config"
"strings" "strings"
projectconfig "github.com/xrehpicx/pee/config"
"github.com/charmbracelet/log" "github.com/charmbracelet/log"
) )

View File

@ -3,8 +3,9 @@ package main
import ( import (
"fmt" "fmt"
"os" "os"
projectconfig "pee/config"
projectmanager "pee/project-manager" projectconfig "github.com/xrehpicx/pee/config"
projectmanager "github.com/xrehpicx/pee/project-manager"
) )
func init() { func init() {

View File

@ -3,10 +3,11 @@ package projectmanager
import ( import (
"fmt" "fmt"
"os" "os"
projectconfig "pee/config"
"pee/controller" projectconfig "github.com/xrehpicx/pee/config"
"pee/ui/filepicker" "github.com/xrehpicx/pee/controller"
"pee/ui/table" "github.com/xrehpicx/pee/ui/filepicker"
"github.com/xrehpicx/pee/ui/table"
btable "github.com/charmbracelet/bubbles/table" btable "github.com/charmbracelet/bubbles/table"
"github.com/charmbracelet/log" "github.com/charmbracelet/log"