Removed some Connect Functions, some import cycles remain

This commit is contained in:
aditya-K2 2022-09-02 01:30:17 +05:30
parent 4ae005cbe7
commit 7e5df526c3
2 changed files with 4 additions and 13 deletions

View File

@ -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")

View File

@ -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"