mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
15 lines
168 B
Go
15 lines
168 B
Go
package zendesk
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/senorprogrammer/wtf/wtf"
|
|
)
|
|
|
|
type Item struct {
|
|
Requester string
|
|
TicketID string
|
|
Subject string
|
|
Status string
|
|
}
|