Require users to agree to license before starting the API
This commit is contained in:
parent
77ba8aee78
commit
741b1e0b9f
7
main.go
7
main.go
|
@ -6,6 +6,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"syscall"
|
"syscall"
|
||||||
|
|
||||||
|
"zxq.co/ripple/agplwarning"
|
||||||
"zxq.co/ripple/rippleapi/app"
|
"zxq.co/ripple/rippleapi/app"
|
||||||
"zxq.co/ripple/rippleapi/beatmapget"
|
"zxq.co/ripple/rippleapi/beatmapget"
|
||||||
"zxq.co/ripple/rippleapi/common"
|
"zxq.co/ripple/rippleapi/common"
|
||||||
|
@ -30,6 +31,11 @@ func init() {
|
||||||
var db *sqlx.DB
|
var db *sqlx.DB
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
err := agplwarning.Warn("ripple", "Ripple API")
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println(err)
|
||||||
|
}
|
||||||
|
|
||||||
fmt.Print("Ripple API")
|
fmt.Print("Ripple API")
|
||||||
if Version != "" {
|
if Version != "" {
|
||||||
fmt.Print("; git commit hash: ", Version)
|
fmt.Print("; git commit hash: ", Version)
|
||||||
|
@ -51,7 +57,6 @@ func main() {
|
||||||
conf.DSN += c + "parseTime=true&charset=utf8mb4,utf8&collation=utf8mb4_general_ci"
|
conf.DSN += c + "parseTime=true&charset=utf8mb4,utf8&collation=utf8mb4_general_ci"
|
||||||
}
|
}
|
||||||
|
|
||||||
var err error
|
|
||||||
db, err = sqlx.Open(conf.DatabaseType, conf.DSN)
|
db, err = sqlx.Open(conf.DatabaseType, conf.DSN)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
schiavo.Bunker.Send(err.Error())
|
schiavo.Bunker.Send(err.Error())
|
||||||
|
|
6
vendor/vendor.json
vendored
6
vendor/vendor.json
vendored
|
@ -182,6 +182,12 @@
|
||||||
"revision": "77ef7867f23cd52e80dcf97e62447d3b36b1d26a",
|
"revision": "77ef7867f23cd52e80dcf97e62447d3b36b1d26a",
|
||||||
"revisionTime": "2016-10-17T20:25:41Z"
|
"revisionTime": "2016-10-17T20:25:41Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"checksumSHA1": "vTjp3tQOr8z8CNjZWwPzgR+t2qQ=",
|
||||||
|
"path": "zxq.co/ripple/agplwarning",
|
||||||
|
"revision": "d3a3d0ee424fcb0bd09a651354c1735285f59f8c",
|
||||||
|
"revisionTime": "2018-02-04T10:46:38Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"checksumSHA1": "SI9tgNMlnMhxP7t6cAGuDjvoAHg=",
|
"checksumSHA1": "SI9tgNMlnMhxP7t6cAGuDjvoAHg=",
|
||||||
"path": "zxq.co/ripple/ocl",
|
"path": "zxq.co/ripple/ocl",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user