Skip to content

Commit

Permalink
make /import/openings post
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Aug 2, 2024
1 parent a762906 commit 657309b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ async fn serve() {
.route("/compact", post(compact))
.route("/import/masters", put(masters_import))
.route("/import/lichess", put(lichess_import))
.route("/import/openings", put(openings_import))
.route("/import/openings", post(openings_import))
.route("/masters/pgn/:id", get(masters_pgn))
.route("/masters", get(masters))
.route("/lichess", get(lichess))
Expand Down

0 comments on commit 657309b

Please sign in to comment.