itd/api/set.go

15 lines
141 B
Go
Raw Normal View History

2022-04-23 00:12:30 +00:00
package api
import (
"time"
)
func (c *Client) SetTime(t time.Time) error {
return c.client.Call(
"ITD",
2022-04-23 00:12:30 +00:00
"SetTime",
t,
nil,
)
}