7 lines
200 B
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...))
|
|
}
|