Fix feedback bundler export and use utils.NewFeedbackBundler

This commit is contained in:
Stu Leak 2025-12-08 16:06:58 -05:00
parent eb349f8365
commit 4f6746594a
3 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import (
type FeedbackBundler struct{}
func newFeedbackBundler() *FeedbackBundler {
func NewFeedbackBundler() *FeedbackBundler {
return &FeedbackBundler{}
}

View File

@ -66,7 +66,7 @@ var (
logsDirOnce sync.Once
logsDirPath string
feedbackBundler = newFeedbackBundler()
feedbackBundler = utils.NewFeedbackBundler()
appVersion = "v0.1.0-dev14"
modulesList = []Module{

0
scripts/build.sh Normal file → Executable file
View File