store.go 252 B

1234567891011
  1. package store
  2. import (
  3. "git.andreafazzi.eu/andrea/testhub/client"
  4. "git.andreafazzi.eu/andrea/testhub/models"
  5. )
  6. type QuizHubCollectorStore interface {
  7. ReadAllQuizzes() ([]*models.Quiz, error)
  8. CreateQuiz(r *client.CreateQuizRequest) *models.Quiz
  9. }