OF7J2A5LAGMT7LXNORNWT532CDW7TPQ6X4QXPID2LSDJ2S3RVWJQC
4SQNS3H5LYNLBGUCQVSUWHWFKLC2DCJY6XM6LQC3WMOVGHLKTD6QC
func (model taskView) fetchTaskData() tea.Msg { task, err:= model.config.queries.GetTask(context.Background(), model.taskId)
func (model taskView) fetchTaskData() tea.Msg {
task, err:= model.config.queries.GetTask(context.Background(), model.taskId)
func fetchTaskData(q *db.Queries, id int64) tea.Cmd { return func() tea.Msg { task, err:= q.GetTask(context.Background(), id)
func fetchTaskData(q *db.Queries, id int64) tea.Cmd {
return func() tea.Msg {
task, err:= q.GetTask(context.Background(), id)
}