You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
443 B
Bash
15 lines
443 B
Bash
#!/bin/bash
|
|
|
|
export GOPROXY=https://goproxy.io
|
|
|
|
mkdir -p $HOME/goftpdir
|
|
#chmod 777 $HOME/goftpdir
|
|
go get github.com/astaxie/beego || echo github.com/astaxie/beego
|
|
go get github.com/satori/go.uuid || echo github.com/satori/go.uuid
|
|
go get github.com/beego/bee || echo github.com/beego/bee
|
|
go get github.com/go-sql-driver/mysql || echo github.com/go-sql-driver/mysql
|
|
|
|
#gorm
|
|
go get -u gorm.io/gorm
|
|
#gorm mysql driver
|
|
go get -u gorm.io/driver/mysql |