htmgo/cli/htmgo/tasks/run/runserver.go
2024-09-20 11:57:45 -05:00

7 lines
163 B
Go

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