This commit is contained in:
2025-11-11 02:33:05 +01:00
parent eb2c8fea64
commit 17a671a417
21 changed files with 560 additions and 73 deletions

18
domain/client.go Normal file
View File

@@ -0,0 +1,18 @@
package domain
import (
"go_oxspeak_server/models"
"sync"
)
type Client struct {
User models.User
mu sync.RWMutex
}
func newClient(user models.User) *Client {
return &Client{
User: user,
}
}