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