Klomachenko / Billiards

MIT License
0 stars 0 forks source link

[FE] feat: 로그인 msw 적용 #16

Open Klomachenko opened 6 days ago

Klomachenko commented 6 days ago

구현하는 기능

API 설명

기존 유저는 로그인, 신규 유저는 회원가입 처리합니다.

Request Sample

{
    "uid" : "String",
    "password" : "String"
}

Response Sample

200 OK

{
    "success": true,
    "response": {
            "id" : 1 //멤버 PK값
        },
    "error": null
}