You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to fetch The tasks by taskID, and it is working fine, but when i'm trying to ocnvert it to json format, it is getting this error,
`
package main
I tried to fetch The tasks by taskID, and it is working fine, but when i'm trying to ocnvert it to json format, it is getting this error,
`
package main
import (
"context"
"encoding/json"
"fmt"
"log"
"os"
)
func fetchTasks(taskId string) (clickup.Task, error) {
api_key := os.Getenv("CLICKUP_API_KEY")
client := clickup.NewClient(nil, api_key)
}
func main() {
}
`
The text was updated successfully, but these errors were encountered: