summaryrefslogtreecommitdiff
path: root/internal/vote.go
blob: 322c620e6d80a086066b9ae1110e67022b61f986 (plain)
1
2
3
4
5
6
7
8
9
package internal

import "time"

type vote struct {
	From string
	IDs  []string
	time time.Time
}