mirror of
https://github.com/jimeh/ozu.io.git
synced 2026-02-19 08:06:39 +00:00
10 lines
237 B
Go
10 lines
237 B
Go
package shortener
|
|
|
|
import "github.com/jimeh/ozu.io/storage"
|
|
|
|
// Shortener defines a shortener interface for shortening URLs.
|
|
type Shortener interface {
|
|
Shorten([]byte) (*storage.Record, error)
|
|
Lookup([]byte) (*storage.Record, error)
|
|
}
|