Changeset 784 in code for trunk/irc.go


Ignore:
Timestamp:
Feb 16, 2022, 1:45:09 PM (3 years ago)
Author:
contact
Message:

Introduce formatServerTime

It's too easy to forget to convert to UTC.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/irc.go

    r778 r784  
    3131// The server-time layout, as defined in the IRCv3 spec.
    3232const serverTimeLayout = "2006-01-02T15:04:05.000Z"
     33
     34func formatServerTime(t time.Time) string {
     35        return t.UTC().Format(serverTimeLayout)
     36}
    3337
    3438type userModes string
Note: See TracChangeset for help on using the changeset viewer.