mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-02 22:12:24 -06:00
9 lines
220 B
Go
9 lines
220 B
Go
|
|
package testrig
|
||
|
|
|
||
|
|
import "github.com/superseriousbusiness/gotosocial/internal/config"
|
||
|
|
|
||
|
|
// NewTestConfig returns a config initialized with test defaults
|
||
|
|
func NewTestConfig() *config.Config {
|
||
|
|
return config.TestDefault()
|
||
|
|
}
|