1
0
mirror of https://github.com/taigrr/shorturl synced 2025-01-18 04:03:16 -08:00
shorturl/config.go
FileGo a3409454c0
Moved database to Bitcask (#22)
* 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
2021-05-10 23:58:17 +10:00

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
}