fix formatting on go code

This commit is contained in:
Karol Wypchlo 2020-02-14 10:42:38 -05:00
parent f98af5aae4
commit da4e37c06f
1 changed files with 2 additions and 2 deletions

View File

@ -26,10 +26,10 @@ import (
func main() {
skylink, err := skynet.UploadFile("./image.jpg", skynet.DefaultUploadOptions)
if err != nil {
fmt.Printf("Unable to upload: %v\n", err.Error())
fmt.Printf("Unable to upload: %v", err.Error())
return
}
fmt.Printf("Upload successful, skylink: %v\n", skylink)
fmt.Printf("Upload successful, skylink: %v", skylink)
}`
export const ruby = ``