Files
LazyPM/pkg/tui/views/views.go
Robin Olsen cc6c4ea7cb change tui and status command to use callback.
add keybind to submit
2026-03-04 22:44:55 +01:00

12 lines
404 B
Go

package views
import (
"github.com/LazyBachelor/LazyPM/internal/app"
"github.com/LazyBachelor/LazyPM/internal/models"
"github.com/LazyBachelor/LazyPM/pkg/tui/views/dashboard"
)
func NewDashboardView(app *app.App, feedbackChan chan models.ValidationFeedback, quitChan chan bool, submitChan chan<- struct{}) *dashboard.Model {
return dashboard.NewDashboard(app, feedbackChan, quitChan, submitChan)
}