Feat: rename user through props

This commit is contained in:
Grail Finder
2025-06-11 11:36:24 +03:00
parent 8902893f6e
commit c2da07ddc3
6 changed files with 139 additions and 81 deletions

View File

@@ -9,7 +9,6 @@ import (
"io"
"log/slog"
"net/http"
"regexp"
"strings"
"time"
@@ -20,10 +19,10 @@ import (
)
var (
TTSTextChan = make(chan string, 10000)
TTSFlushChan = make(chan bool, 1)
TTSDoneChan = make(chan bool, 1)
endsWithPunctuation = regexp.MustCompile(`[;.!?]$`)
TTSTextChan = make(chan string, 10000)
TTSFlushChan = make(chan bool, 1)
TTSDoneChan = make(chan bool, 1)
// endsWithPunctuation = regexp.MustCompile(`[;.!?]$`)
)
type Orator interface {