From a3e3f09bfa9f6fd5c938143cb8995c5110204379 Mon Sep 17 00:00:00 2001 From: Hunter Beckmann Date: Thu, 18 Jul 2024 10:25:30 -0600 Subject: [PATCH] Switch to new lesson endpoint (#40) switch to new lesson endpoint --- client/lessons.go | 2 +- version.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/lessons.go b/client/lessons.go index 82f22be..00c2e34 100644 --- a/client/lessons.go +++ b/client/lessons.go @@ -88,7 +88,7 @@ type Lesson struct { } func FetchLesson(uuid string) (*Lesson, error) { - resp, err := fetchWithAuth("GET", "/v1/lessons/"+uuid) + resp, err := fetchWithAuth("GET", "/v1/static/lessons/"+uuid) if err != nil { return nil, err } diff --git a/version.txt b/version.txt index 0236045..46b105a 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -v1.6.1 +v2.0.0