add sub routes to backend app

in the shape of websocket and post \ get
with receiving of some request model
This commit is contained in:
efim
2023-04-23 11:55:53 +04:00
parent d8af92787d
commit c501d14094
4 changed files with 70 additions and 35 deletions

View File

@@ -0,0 +1,5 @@
package industries.sunshine.planningpoker
object Requests {
final case class LogIn(roomName: String, nickname: String, password: String)
}