package link import ( "net/url" "time" ) type Link struct { Id int64 Name string RedirectURL url.URL Password string CreationTime time.Time } type Links = []*Link