diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-11-06 14:51:28 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-11-06 14:51:28 +0100 |
commit | e904bbbca32614da95384d11f6ad5e53ea1e0036 (patch) | |
tree | 146e52e1ed51ddf86120992fe0e6aeddbbcda0de /lib/agent/apiv1-sdks.go | |
parent | a58e296c780f3f9f3a8f71a27cef0d202b13674b (diff) |
Use plural nouns for all routes.
Diffstat (limited to 'lib/agent/apiv1-sdks.go')
-rw-r--r-- | lib/agent/apiv1-sdks.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/agent/apiv1-sdks.go b/lib/agent/apiv1-sdks.go index ee6409d..73ad2af 100644 --- a/lib/agent/apiv1-sdks.go +++ b/lib/agent/apiv1-sdks.go @@ -3,7 +3,7 @@ package agent // sdksPassthroughInit Declare passthrough routes for sdks func (s *APIService) sdksPassthroughInit(svr *XdsServer) error { svr.PassthroughGet("/sdks") - svr.PassthroughGet("/sdk/:id") + svr.PassthroughGet("/sdks/:id") return nil } |