continue reworking node API

This commit is contained in:
soypat
2025-07-13 01:07:08 -03:00
parent 2bd056a04c
commit 1549e563e9
7 changed files with 64 additions and 33 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ type Client struct {
sysprec int8
}
func (c *Client) Reset(now func() time.Time, sysprec int8) {
func (c *Client) Reset(sysprec int8, now func() time.Time) {
*c = Client{
connID: c.connID + 1,
_now: now,