update language data, blocks and items

This commit is contained in:
Tnze
2019-12-14 22:19:23 +08:00
parent 0efefc0f94
commit 55c7e2163b
6 changed files with 5198 additions and 9 deletions

View File

@ -15,8 +15,8 @@ func ExampleAuthenticate() {
fmt.Println(resp.AccessToken())
}
func Example(){
var user, password string// set your proof
func Example() {
var user, password string // set your proof
// Sign in
resp, err := Authenticate(user, password)
@ -49,7 +49,7 @@ func Example(){
fmt.Println("at status: ", ok)
// Invalidate access token
err=resp.Invalidate()
err = resp.Invalidate()
if err != nil {
fmt.Println(err)
os.Exit(1)
@ -69,4 +69,4 @@ func Example(){
fmt.Println(err)
os.Exit(1)
}
}
}