16 lines
241 B
Go
16 lines
241 B
Go
package test
|
|
|
|
import "os"
|
|
|
|
// todo: move into main_test.go and add utility functions in there
|
|
type TestVars struct {
|
|
DbPath string
|
|
}
|
|
|
|
func NewTestVars() *TestVars {
|
|
return &TestVars{
|
|
DbPath: os.TempDir() + "/dendrite_test_vault",
|
|
}
|
|
}
|
|
|
|
|