Files
leanote/vendor/github.com/revel/modules/testrunner/app/plugin.go
2017-11-30 19:55:33 +08:00

12 lines
153 B
Go

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