htmgo/cli/htmgo/tasks/run/runserver.go

7 lines
200 B
Go

package run
import "github.com/maddalax/htmgo/cli/htmgo/tasks/process"
func Server(flags ...process.RunFlag) error {
return process.Run(process.NewRawCommand("run-server", "go run .", flags...))
}