You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
239 B

  1. package main
  2. type Routes []Route
  3. var routes = Routes{
  4. Route{
  5. "Index",
  6. "GET",
  7. "/",
  8. Index,
  9. },
  10. Route{
  11. "GetPeers",
  12. "GET",
  13. "/peers",
  14. GetPeers,
  15. },
  16. Route{
  17. "GetBlockchain",
  18. "GET",
  19. "/blockchain",
  20. GetBlockchain,
  21. },
  22. }