From c78d173cf71dce2ed38199c8ead7bcdc573d7512 Mon Sep 17 00:00:00 2001 From: Stephen J Day Date: Thu, 11 Dec 2014 21:03:45 -0800 Subject: [PATCH] Move routes to urls package To lock down V2 api routing, we are moving it to a separate package, with an exported router creation function and route names. Updates will follow to prepare the package for export. --- routes.go => api/urls/routes.go | 0 routes_test.go => api/urls/routes_test.go | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename routes.go => api/urls/routes.go (100%) rename routes_test.go => api/urls/routes_test.go (100%) diff --git a/routes.go b/api/urls/routes.go similarity index 100% rename from routes.go rename to api/urls/routes.go diff --git a/routes_test.go b/api/urls/routes_test.go similarity index 100% rename from routes_test.go rename to api/urls/routes_test.go