package teamspeak import "time" type Status struct { IsMessagePinned bool ResetTicker (chan bool) IsInRetryLoop bool RetryCount int CheckCount int CheckFailedCount int BeforeOnlineClient []Client IsCheckClientTaskScheduled bool IsCheckClientTaskRunning bool IsDeleteMessageTaskScheduled bool IsDeleteMessageTaskRunning bool OldMessageID []OldMessageID RetryMsgID int } type OldMessageID struct { Date int // unix timestamp ID int } type Client struct { Username string DatabaseID int JoinTime time.Time }