10 lines
171 B
Go
10 lines
171 B
Go
package resultdetail
|
|
|
|
import "github.com/joint-online-judge/JOJ3/internal/stage"
|
|
|
|
var name = "result-detail"
|
|
|
|
func init() {
|
|
stage.RegisterParser(name, &ResultDetail{})
|
|
}
|