removed extra line

pull/1097/head
Rhythm 2022-01-06 11:45:19 +05:30
parent 69a98f4b5b
commit 8892d4c314
1 changed files with 0 additions and 1 deletions

View File

@ -63,7 +63,6 @@ func FindDowntime(timeVar time.Time) []Downtime {
q := db.Where("start <= ? and \"end\" >= ?", timeVar, timeVar)
q = q.Order("id ASC ").Find(&downtime)
return downtime
}
func (c *Downtime) Create() error {