10 lines
143 B
Go
10 lines
143 B
Go
package log
|
|
|
|
import "github.com/joint-online-judge/JOJ3/internal/stage"
|
|
|
|
var name = "log"
|
|
|
|
func init() {
|
|
stage.RegisterParser(name, &Log{})
|
|
}
|