push_client/client.go

12 lines
132 B
Go
Raw Normal View History

2025-01-27 12:32:05 +03:00
package push_client
type Client struct {
Addr string
}
2025-01-27 12:35:40 +03:00
func NewClient(addr string) *Client {
return &Client{
Addr: addr,
}
}