diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2020-05-22 14:14:39 +0100 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2020-05-22 14:14:39 +0100 |
commit | 06d5f1e6dcd9f3e1db92880c7c3f4068cc92ab99 (patch) | |
tree | 558ad5fe0d8b2d308085ef31aa45a144abde15cb /eduserver/api | |
parent | 0978630b552b0f88bf5efc1c59860cbeb706606d (diff) |
Fix API paths
Diffstat (limited to 'eduserver/api')
-rw-r--r-- | eduserver/api/input.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eduserver/api/input.go b/eduserver/api/input.go index 999a5b41..8b5b6d76 100644 --- a/eduserver/api/input.go +++ b/eduserver/api/input.go @@ -55,7 +55,7 @@ type EDUServerInputAPI interface { } // EDUServerInputTypingEventPath is the HTTP path for the InputTypingEvent API. -const EDUServerInputTypingEventPath = "/api/eduserver/input" +const EDUServerInputTypingEventPath = "/eduserver/input" // NewEDUServerInputAPIHTTP creates a EDUServerInputAPI implemented by talking to a HTTP POST API. func NewEDUServerInputAPIHTTP(eduServerURL string, httpClient *http.Client) (EDUServerInputAPI, error) { |