Put project modules under pkg directory

This commit is contained in:
Andrey Chervyakov 2021-04-12 17:17:09 +06:00
parent f4684be37d
commit e1516e450b
13 changed files with 7 additions and 7 deletions

View file

@ -0,0 +1,16 @@
package link
import (
"net/url"
"time"
)
type Link struct {
Id string
Name string
RedirectURL url.URL
Password string
CreationTime time.Time
}
type Links = []*Link