mirror of
https://github.com/4rkal/shortr.git
synced 2024-11-10 12:07:22 +02:00
8 lines
79 B
Go
8 lines
79 B
Go
|
package models
|
||
|
|
||
|
type Link struct {
|
||
|
Id string
|
||
|
Url string
|
||
|
Clicks int
|
||
|
}
|