Add fallthrough

This commit is contained in:
Eliot Whalan 2016-07-15 14:42:51 +10:00
parent 65624b1874
commit 1dbd948eec
1 changed files with 3 additions and 0 deletions

View File

@ -108,6 +108,9 @@ func Sha1(paste string) string {
// DurationFromExpiry takes the expiry in string format and returns the duration
// that the paste will exist for
func DurationFromExpiry(expiry string) time.Duration {
if expiry == "" {
expiry = "P20Y"
}
dura, err := duration.FromString(expiry) // dura is time.Duration type
Check(err)