14 lines
303 B
Go
14 lines
303 B
Go
|
package question
|
||
|
|
||
|
import "github.com/hhhapz/codequest/models"
|
||
|
|
||
|
func init() {
|
||
|
Register(&Question{
|
||
|
ID: "directions",
|
||
|
Text: ``,
|
||
|
Level: 0,
|
||
|
Generate: func(*models.User) string { panic("not implemented") },
|
||
|
Validate: func(*models.User, string) bool { panic("not implemented") },
|
||
|
})
|
||
|
}
|