mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
17 lines
418 B
Go
17 lines
418 B
Go
// Copyright (c) 2016- Daniel Oaks <daniel@danieloaks.net>
|
|
// released under the MIT license
|
|
|
|
package irc
|
|
|
|
import "time"
|
|
|
|
// Account represents a user account.
|
|
type Account struct {
|
|
// Name of the account.
|
|
Name string
|
|
// RegisteredAt represents the time that the account was registered.
|
|
RegisteredAt time.Time
|
|
// Clients that are currently logged into this account (useful for notifications).
|
|
Clients []Client
|
|
}
|