I'm just playing around with golang. I'm curious How could I run a gulpfile task from go?
Gulp task that is run from terminal typical:
gulp serv.dev
How could I run this simple line of code from golang:
package main
import (
"net/http"
"github.com/julienschmidt/httprouter"
"fmt"
)
func main() {
//what do I put here to open terminal in background and run `gulp serv.dev`
}