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 (
|
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"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
5
main.go
5
main.go
|
@ -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() {
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue