mirror of
https://github.com/jimeh/ozu.io.git
synced 2026-02-19 08:06:39 +00:00
9 lines
202 B
Go
9 lines
202 B
Go
package shortener
|
|
|
|
import "github.com/jimeh/ozu.io/storage"
|
|
|
|
// New returns a new *Base58Shortner that uses the given storage.Store.
|
|
func New(store storage.Store) Shortener {
|
|
return NewBase58(store)
|
|
}
|