Add fallthrough

This commit is contained in:
Eliot Whalan 2016-07-15 14:42:51 +10:00
parent fa91a2fa81
commit edf3f836e8
No known key found for this signature in database
GPG Key ID: C0A42175139840D6
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 // DurationFromExpiry takes the expiry in string format and returns the duration
// that the paste will exist for // that the paste will exist for
func DurationFromExpiry(expiry string) time.Duration { func DurationFromExpiry(expiry string) time.Duration {
if expiry == "" {
expiry = "P20Y"
}
dura, err := duration.FromString(expiry) // dura is time.Duration type dura, err := duration.FromString(expiry) // dura is time.Duration type
Check(err) Check(err)