13 lines
459 B
Go
13 lines
459 B
Go
package repository
|
|
|
|
import (
|
|
"Yimaru-Backend/internal/ports"
|
|
)
|
|
|
|
// NewInitialAssessmentStore returns the Store which now delegates to the unified questions system
|
|
func NewInitialAssessmentStore(s *Store) ports.InitialAssessmentStore { return s }
|
|
|
|
// The initial assessment functionality now uses the unified questions system.
|
|
// Use GetInitialAssessmentSet to get the initial assessment question set,
|
|
// then use the question set items to get the questions.
|