friendsofgo / killgrave

Simple way to generate mock servers written in Go
https://friendsofgo.github.io/killgrave/
MIT License
523 stars 100 forks source link

Interactive mode #117

Open joanlopez opened 3 years ago

joanlopez commented 3 years ago

Although it might be a bit out of the scope of this project, it could be interesting to enable an interactive mode in order to let the user to manually respond to some specific endpoints (applying same rules as regular imposters).

Since HTTP is a plaintext-based protocol, it shouldn't be harder than reading input from stdin and determining when then payload is finished (double /n or similar).

Thanks!!