chore: fixed imports and function signatures

This commit is contained in:
Slug-Boi
2024-10-24 21:11:24 +02:00
parent 135d02dec1
commit def99f602f
8 changed files with 57 additions and 12 deletions
+2 -2
View File
@@ -5,7 +5,7 @@ package tui
import (
"fmt"
"main/src_code/go_src/cmd/utils"
"github.com/Slug-Boi/cocommit/src_code/go_src/cmd/utils"
"os"
"strings"
@@ -285,7 +285,7 @@ func Entry_CA() string {
return ""
}
func Entry_TA(ch chan bool) string {
func Entry_TA() string {
m, err := tea.NewProgram(initialModel("temp")).Run()
if err != nil {
fmt.Printf("could not start program: %s\n", err)
+1 -1
View File
@@ -3,7 +3,7 @@ package tui
import (
"fmt"
"io"
"main/src_code/go_src/cmd/utils"
"github.com/Slug-Boi/cocommit/src_code/go_src/cmd/utils"
"os"
"sort"
"strings"