Go-lint clean-up

This commit is contained in:
Brian DeHamer 2015-07-21 21:40:22 +00:00
parent 4ba21639a0
commit cc1efc20e2
3 changed files with 7 additions and 6 deletions

View file

@ -5,7 +5,8 @@ import (
"time"
)
// Sort containers by Created date
// ByCreated allows a list of Container structs to be sorted by the container's
// created date.
type ByCreated []Container
func (c ByCreated) Len() int { return len(c) }