summaryrefslogtreecommitdiff
path: root/client/client.go
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2023-03-20 13:49:26 +0100
committerJeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com>2023-09-25 09:43:37 +0200
commit8ccb4486cdb03cd3b10606b4bd77b7bcb4107e6d (patch)
treef245d9b858a40ae99caca6c7fbc15e4d91f74d3d /client/client.go
parent40705474e1998bf4a59b82c96d343e13247a9926 (diff)
Format: Run gofumpt
Diffstat (limited to 'client/client.go')
-rw-r--r--client/client.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/client.go b/client/client.go
index 49c8bc1..c788cb2 100644
--- a/client/client.go
+++ b/client/client.go
@@ -299,10 +299,10 @@ func (c *Client) ExpiryTimes() (*types.Expiry, error) {
cT := b.CountdownTime()
nT := b.NotificationTimes()
return &types.Expiry{
- StartTime: b.StartTime.Unix(),
- EndTime: b.EndTime.Unix(),
- ButtonTime: bT,
- CountdownTime: cT,
+ StartTime: b.StartTime.Unix(),
+ EndTime: b.EndTime.Unix(),
+ ButtonTime: bT,
+ CountdownTime: cT,
NotificationTimes: nT,
}, nil
}