setup.sh 168 B

123456789
  1. #!/bin/bash
  2. # Where to find the go executable
  3. export PATH="$GOROOT/bin:$PATH"
  4. go get github.com/gin-gonic/gin
  5. go get github.com/go-sql-driver/mysql
  6. go run hello.go &