Removed some Connect Functions, some import cycles remain
This commit is contained in:
parent
4ae005cbe7
commit
7e5df526c3
3
main.go
3
main.go
@ -50,9 +50,6 @@ func main() {
|
|||||||
|
|
||||||
ui.Ui = ui.NewApplication()
|
ui.Ui = ui.NewApplication()
|
||||||
|
|
||||||
// Connecting the Notification Server to the Main UI
|
|
||||||
notify.ConnectUI(ui.Ui)
|
|
||||||
|
|
||||||
fileMap, err := CONN.ListAllInfo("/")
|
fileMap, err := CONN.ListAllInfo("/")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
utils.Print("RED", "Could Not Generate the File Map\n")
|
utils.Print("RED", "Could Not Generate the File Map\n")
|
||||||
|
|||||||
@ -4,7 +4,6 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/aditya-K2/gomp/ui"
|
"github.com/aditya-K2/gomp/ui"
|
||||||
|
|
||||||
"github.com/aditya-K2/gomp/utils"
|
"github.com/aditya-K2/gomp/utils"
|
||||||
|
|
||||||
"github.com/aditya-K2/tview"
|
"github.com/aditya-K2/tview"
|
||||||