diff options
Diffstat (limited to 'helpfuncs.go')
| -rw-r--r-- | helpfuncs.go | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/helpfuncs.go b/helpfuncs.go index f47fdd1..b24697a 100644 --- a/helpfuncs.go +++ b/helpfuncs.go @@ -15,8 +15,6 @@ import ( "time" "unicode" - "math/rand/v2" - "github.com/rivo/tview" ) @@ -375,16 +373,6 @@ func makeStatusLine() string { return statusLine + imageInfo + shellModeInfo } -var letters = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ") - -func randString(n int) string { - b := make([]rune, n) - for i := range b { - b[i] = letters[rand.IntN(len(letters))] - } - return string(b) -} - // set of roles within card definition and mention in chat history func listChatRoles() []string { currentChat, ok := chatMap[activeChatName] |
