mirror of
https://github.com/taigrr/shorturl
synced 2025-01-18 04:03:16 -08:00
* Changed URL format to shortuuid * Fixed drone CI failure * Moved database to Bitcask and some minor changes * Moved database to Bitcask and some minor changes * Delete coverage.txt
16 lines
192 B
Go
16 lines
192 B
Go
package main
|
|
|
|
import "github.com/prologic/bitcask"
|
|
|
|
// Config ...
|
|
type Config struct {
|
|
baseURL string
|
|
}
|
|
|
|
// Env ...
|
|
type Env struct {
|
|
cfg Config
|
|
db *bitcask.Bitcask
|
|
dbpath string
|
|
}
|