Expose SettingUsg API

This commit is contained in:
James Stephenson
2020-08-28 23:26:27 -04:00
committed by Paul Tyng
parent e93f92a066
commit 3f0b230368

13
unifi/setting_usg.go Normal file
View File

@@ -0,0 +1,13 @@
package unifi
import (
"context"
)
func (c *Client) GetSettingUsg(ctx context.Context, site string) (*SettingUsg, error) {
return c.getSettingUsg(ctx, site)
}
func (c *Client) UpdateSettingUsg(ctx context.Context, site string, d *SettingUsg) (*SettingUsg, error) {
return c.updateSettingUsg(ctx, site, d)
}