Skip to content

Commit

Permalink
removed echo dependency (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-machado committed Jul 9, 2019
1 parent 5816347 commit 32be589
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
9 changes: 0 additions & 9 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Podium is based on the premise that you have a backend server for your game. Tha

For the devs out there, our code is in Go, but more specifically:

* Web Framework - [Echo](https://github.com/labstack/echo) based on the insanely fast [FastHTTP](https://github.com/valyala/fasthttp);
* Web Framework - [gRPC](https://godoc.org/google.golang.org/grpc) and [gRPC-gateway](github.com/grpc-ecosystem/grpc-gateway).
* Database - Redis.

## Who's Using it
Expand Down
2 changes: 1 addition & 1 deletion leaderboard/leaderboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
package leaderboard

import (
"context"
"encoding/json"
"fmt"
"math"
Expand All @@ -20,7 +21,6 @@ import (
"time"

"github.com/go-redis/redis"
"github.com/labstack/echo/context"
"github.com/spf13/viper"
"github.com/topfreegames/extensions/redis/interfaces"
"github.com/topfreegames/podium/util"
Expand Down

0 comments on commit 32be589

Please sign in to comment.