2024-09-16 22:41:46 +00:00
|
|
|
package run
|
|
|
|
|
|
2024-09-20 16:57:45 +00:00
|
|
|
import "github.com/maddalax/htmgo/cli/htmgo/tasks/process"
|
2024-09-16 22:41:46 +00:00
|
|
|
|
2024-09-19 03:32:09 +00:00
|
|
|
func Server(flags ...process.RunFlag) error {
|
2024-09-26 16:40:31 +00:00
|
|
|
return process.Run(process.NewRawCommand("run-server", "go run .", flags...))
|
2024-09-16 22:41:46 +00:00
|
|
|
}
|