probo/store/store.go

12 lines
252 B
Go
Raw Normal View History

2022-06-23 11:25:35 +02:00
package store
import (
"git.andreafazzi.eu/andrea/testhub/client"
"git.andreafazzi.eu/andrea/testhub/models"
)
type QuizHubCollectorStore interface {
ReadAllQuizzes() ([]*models.Quiz, error)
CreateQuiz(r *client.CreateQuizRequest) *models.Quiz
}