gosuki/database/utils.go

14 lines
210 B
Go
Raw Normal View History

2018-12-04 03:34:30 +00:00
package database
import (
"path/filepath"
2020-08-12 18:13:01 +00:00
"git.sp4ke.com/sp4ke/gomark/utils"
2018-12-04 03:34:30 +00:00
)
func GetDBFullPath() string {
dbdir := utils.GetDefaultDBPath()
dbpath := filepath.Join(dbdir, DBFileName)
return dbpath
}