(userIdA int64, userIdB int64)
| 62 | } |
| 63 | |
| 64 | func genChatKey(userIdA int64, userIdB int64) string { |
| 65 | if userIdA > userIdB { |
| 66 | return fmt.Sprintf("%d_%d", userIdB, userIdA) |
| 67 | } |
| 68 | return fmt.Sprintf("%d_%d", userIdA, userIdB) |
| 69 | } |
no outgoing calls
no test coverage detected