diff --git a/client.go b/client.go index 5ab7e4b..d00e386 100644 --- a/client.go +++ b/client.go @@ -3,3 +3,9 @@ package push_client type Client struct { Addr string } + +func NewClient(addr string) *Client { + return &Client{ + Addr: addr, + } +}