Fix indent in README.md

This commit is contained in:
Adphi 2018-10-26 09:40:11 +02:00
parent 8268907940
commit 16ca38c4e4
1 changed files with 23 additions and 23 deletions

View File

@ -21,14 +21,14 @@ You use the library by creating a client object and calling methods on it.
For example, to list all the Nextcloud's instance users:
```go
package main
package main
import (
import (
"fmt"
"gitlab.adphi.fr/partitio/Nextcloud-Partitio/gonextcloud/client"
)
)
func main() {
func main() {
url := "https://www.mynextcloud.com"
username := "admin"
password := "password"
@ -46,7 +46,7 @@ For example, to list all the Nextcloud's instance users:
panic(err)
}
fmt.Println("Users :", users)
}
}
```
## Run tests