This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
bactdb/router/api.go
Matthew Dillon da7be2e150 Rocking github.com/sourcegraph/thesrc template
- Working in client, router, and basic models (user)
2014-09-24 11:19:31 -08:00

9 lines
160 B
Go

package router
import "github.com/gorilla/mux"
func API() *mux.Router {
m := mux.NewRouter()
m.Path("/users/{Id:.+}").Methods("GET").Name(User)
return m
}