12 lines
140 B
Go
12 lines
140 B
Go
|
package question
|
||
|
|
||
|
func init() {
|
||
|
Register(&Question{
|
||
|
ID: "",
|
||
|
Text: "",
|
||
|
Level: 0,
|
||
|
Generate: nil,
|
||
|
Validate: nil,
|
||
|
})
|
||
|
}
|