forked from Elara6331/itd
15 lines
141 B
Go
15 lines
141 B
Go
package api
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func (c *Client) SetTime(t time.Time) error {
|
|
return c.client.Call(
|
|
"ITD",
|
|
"SetTime",
|
|
t,
|
|
nil,
|
|
)
|
|
}
|