pgweb/pkg/history/history.go

22 lines
295 B
Go
Raw Normal View History

2015-04-30 11:47:07 -05:00
package history
import (
"time"
)
type Record struct {
Query string `json:"query"`
Timestamp string `json:"timestamp"`
}
func New() []Record {
return make([]Record, 0)
}
func NewRecord(query string) Record {
return Record{
Query: query,
Timestamp: time.Now().String(),
}
}