Files
leanote/vendor/github.com/revel/modules/testrunner/app/plugin.go
lealife b140cd538f vendor
2017-06-22 13:18:16 +08:00

13 lines
154 B
Go

package app
import (
"fmt"
"github.com/revel/revel"
)
func init() {
revel.OnAppStart(func() {
fmt.Println("Go to /@tests to run the tests.")
})
}