forked from Elara6331/itd
16 lines
170 B
Go
16 lines
170 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func (c *Client) SetTime(t time.Time) error {
|
||
|
return c.itdClient.Call(
|
||
|
context.Background(),
|
||
|
"SetTime",
|
||
|
t,
|
||
|
nil,
|
||
|
)
|
||
|
}
|