mirror of
https://github.com/onyx-and-iris/xair-cli.git
synced 2026-02-03 23:17:47 +00:00
10 lines
111 B
Go
10 lines
111 B
Go
package xair
|
|
|
|
type Gate struct {
|
|
client *Client
|
|
}
|
|
|
|
func newGate(c *Client) *Gate {
|
|
return &Gate{client: c}
|
|
}
|