The backend for the project formerly known as signet, now known as beignet.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

58 líneas
1.9 KiB

  1. package main
  2. import (
  3. "fmt"
  4. "net/http"
  5. "github.com/gorilla/mux"
  6. "github.com/imosed/signet/data"
  7. "github.com/imosed/signet/endpoints"
  8. "github.com/rs/zerolog"
  9. "github.com/rs/zerolog/log"
  10. "github.com/spf13/viper"
  11. )
  12. var err error
  13. // Testnet wallet: GDQZ34LBZSUYFR3DSDYFDLNYDHRXPUB76FIW2FTESYHRUOGZ6GXN5LOS
  14. // Testnet secret: SCDYZYNZIDYHU3HNIBDZEVCRD2QB2VOZWJR3XP63FA6AOC6GQQSZ3C3U
  15. func main() {
  16. viper.SetConfigFile("config.production.json")
  17. err = viper.ReadInConfig()
  18. if err != nil {
  19. log.Error().Err(err).Msg("Could not read in Viper config")
  20. }
  21. zerolog.TimeFieldFormat = zerolog.TimeFormatUnix
  22. data.InitializeDatabase()
  23. go endpoints.InitializeContributionStreams()
  24. router := mux.NewRouter()
  25. router.HandleFunc("/GetRewardFunds", endpoints.GetRewardFunds)
  26. router.HandleFunc("/GetRewardFund", endpoints.GetRewardFund)
  27. router.HandleFunc("/GetContributions", endpoints.GetContributions)
  28. router.HandleFunc("/CreateQueue", endpoints.CreateQueue)
  29. router.HandleFunc("/GetQueues", endpoints.GetQueues)
  30. router.HandleFunc("/GetQueueMembers", endpoints.GetQueueMembers)
  31. router.HandleFunc("/CreateRewardFund", endpoints.CreateRewardFund)
  32. router.HandleFunc("/CloseRewardFund", endpoints.CloseRewardFund)
  33. // router.HandleFunc("/SubmitFund", endpoints.SubmitFund)
  34. router.HandleFunc("/GetBalance", endpoints.GetBalance)
  35. router.HandleFunc("/Contribute", endpoints.Contribute)
  36. router.HandleFunc("/ContributorStream", endpoints.ContributorStream)
  37. router.HandleFunc("/Login", endpoints.Login)
  38. router.HandleFunc("/Register", endpoints.Register)
  39. router.HandleFunc("/EscalatePrivileges", endpoints.EscalatePrivileges)
  40. router.HandleFunc("/UsersExist", endpoints.UsersExist)
  41. port := viper.GetInt("app.port")
  42. fmt.Printf("Running on port %d...\n", port)
  43. err = http.ListenAndServe(fmt.Sprintf(":%d", port), router)
  44. if err != nil {
  45. log.Error().Err(err).Msg(fmt.Sprintf("Could not bind to port %d", port))
  46. }
  47. }