upd
This commit is contained in:
12
internal/cheating/determine_question_type.go
Normal file
12
internal/cheating/determine_question_type.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package cheating
|
||||
|
||||
type QuestionType int
|
||||
|
||||
const (
|
||||
QuestionWithPicture QuestionType = iota
|
||||
FullTextQuestion QuestionType = iota
|
||||
)
|
||||
|
||||
func DetermineQuestionType(html string) QuestionType {
|
||||
return FullTextQuestion
|
||||
}
|
||||
Reference in New Issue
Block a user