Skip to content

Commit

Permalink
[extapi] added finder
Browse files Browse the repository at this point in the history
  • Loading branch information
DictumMortuum committed Jul 2, 2024
1 parent 16b93ca commit a3c4062
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/servus-extapi/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

func Version(c *gin.Context) {
rs := map[string]any{
"version": "v0.0.25",
"version": "v0.0.26",
}
c.AbortWithStatusJSON(200, rs)
}
Expand Down Expand Up @@ -49,6 +49,7 @@ func main() {
adapter.RaRoute(g, "books", model.Book{})
adapter.RaRoute(g, "eurovisionparticipations", model.EurovisionParticipation{})
adapter.RaRoute(g, "eurovisionvotes", model.EurovisionVote{})
adapter.RaRoute(g, "finderusers", model.FinderUser{})

// jwt := middleware.Jwt("http://sol.dictummortuum.com:3567/.well-known/jwks.json")

Expand Down

0 comments on commit a3c4062

Please sign in to comment.