Documentation
¶
Overview ¶
shurl is an url shortener library using badger.
Index ¶
Constants ¶
View Source
const ( DefaultDbPath = "/tmp/badger" DefaultLength = 8 )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Handler ¶
type Handler struct { TTL time.Duration Length int Scheme string // contains filtered or unexported fields }
Handler is the handler for our library. It should be created with the New() function.
func New ¶
New creates a new Handler. It implements the option pattern to change the default value of our handler.
type Options ¶
type Options func(*Handler)
func WithDbPath ¶
func WithDefaultLength ¶
func WithDefaultTTL ¶
func WithLogger ¶
func WithLogger(logger badger.Logger) Options
type ReqOptions ¶
type ReqOptions func(*req)
func WithLength ¶
func WithLength(length int) ReqOptions
func WithTTL ¶
func WithTTL(ttl time.Duration) ReqOptions
Click to show internal directories.
Click to hide internal directories.