1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/modules/trello/card.go
Sean Smith b7bd6e3817 Respect list ordering for trello
Ordering not respected because of the use of a map
Switch to using slice
Resolves #664
2019-10-02 17:26:34 -04:00

14 lines
177 B
Go

package trello
type TrelloCard struct {
ID string
Name string
List string
Description string
}
type TrelloList struct {
ID string
Name string
}