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 (
"fmt"
"os/exec"
projectconfig "pee/config"
"strings"
projectconfig "github.com/xrehpicx/pee/config"
"github.com/charmbracelet/log"
)

View File

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

View File

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