Remove uncessary variable
This commit is contained in:
parent
e86b94784d
commit
8e211a36a3
|
@ -138,12 +138,8 @@ func Save(raw string, lang string, title string, expiry string) Response {
|
||||||
|
|
||||||
const timeFormat = "2006-01-02 15:04:05"
|
const timeFormat = "2006-01-02 15:04:05"
|
||||||
|
|
||||||
expiry = "P" + expiry
|
|
||||||
dura, err := duration.FromString(expiry) // dura is time.Duration type
|
dura, err := duration.FromString(expiry) // dura is time.Duration type
|
||||||
|
Check(err)
|
||||||
if err != nil {
|
|
||||||
fmt.Println("Error : ", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
duration := dura.ToDuration()
|
duration := dura.ToDuration()
|
||||||
expiryTime := time.Now().Add(duration).Format(timeFormat)
|
expiryTime := time.Now().Add(duration).Format(timeFormat)
|
||||||
|
|
Loading…
Reference in New Issue