Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 508 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 508 Bytes

Doors

A service for predicting the order of keys to use for opening doors in Ladder Slasher.

Run Locally

$ ./dev/run
Running on port :8080

Once running, pass the class query parameter to get a "suggestion" of key order to use:

$ curl "localhost:8080?class=monk"
map[keys:[1 2 4 3]]

Optionally, you may provide a PORT environment variable to change to listening on another port.

$ PORT=1337 ./dev/run
Running on port :1337