mirror of
https://github.com/jimeh/ozu.io.git
synced 2026-02-19 08:06:39 +00:00
8 lines
127 B
Go
8 lines
127 B
Go
package storage
|
|
|
|
// Record provides a standard way to refer to a shortened URL.
|
|
type Record struct {
|
|
UID []byte
|
|
URL []byte
|
|
}
|