mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-20 00:01:21 +00:00
13 lines
197 B
Go
13 lines
197 B
Go
package goog
|
|
|
|
const (
|
|
Inbox = "INBOX"
|
|
Sent = "SENT"
|
|
Draft = "DRAFT"
|
|
Spam = "SPAM"
|
|
Trash = "TRASH"
|
|
Important = "IMPORTANT"
|
|
Starred = "STARRED"
|
|
Unread = "UNREAD"
|
|
)
|