@GET("courses/{id}")
    suspend fun getCourse(
        @Path("id") id: String
    ): Response<Course>