Browse Source

store: remove unused code

Jonathan Boulle 11 years ago
parent
commit
2cd6594485
1 changed files with 0 additions and 20 deletions
  1. 0 20
      store/ttl.go

+ 0 - 20
store/ttl.go

@@ -1,20 +0,0 @@
-package store
-
-import (
-	"strconv"
-	"time"
-)
-
-// Convert string duration to time format
-func TTL(duration string) (time.Time, error) {
-	if duration != "" {
-		duration, err := strconv.Atoi(duration)
-		if err != nil {
-			return Permanent, err
-		}
-		return time.Now().Add(time.Second * (time.Duration)(duration)), nil
-
-	} else {
-		return Permanent, nil
-	}
-}