mirror of https://github.com/xrehpicx/pee.git
updated imports
This commit is contained in:
parent
51ecfe22a0
commit
9f5db44a6c
|
@ -3,9 +3,10 @@ package controller
|
|||
import (
|
||||
"fmt"
|
||||
"os/exec"
|
||||
projectconfig "pee/config"
|
||||
"strings"
|
||||
|
||||
projectconfig "github.com/xrehpicx/pee/config"
|
||||
|
||||
"github.com/charmbracelet/log"
|
||||
)
|
||||
|
||||
|
|
5
main.go
5
main.go
|
@ -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() {
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue