htmgo/cli/tasks/run/runserver.go

8 lines
152 B
Go
Raw Normal View History

package run
import "github.com/maddalax/htmgo/cli/tasks/process"
func Server(exitOnError bool) error {
return process.Run("go run .", exitOnError)
}