feat: 添加21点游戏

This commit is contained in:
lixiangwuxian
2024-11-01 00:46:26 +08:00
parent dce09c6e1f
commit 53da17802a
12 changed files with 999 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package controller
type BackJackResponse struct {
Code int
Description string
}
func NewBlackJackResponse(code int, description string) *BackJackResponse {
return &BackJackResponse{
Code: code,
Description: description,
}
}