Created
December 10, 2021 05:10
-
-
Save manakuro/a555d045a443f590ae290b7e0f2bf82f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package testutil | |
import ( | |
"golang-clean-architecture-ent-gqlgen/config" | |
"golang-clean-architecture-ent-gqlgen/pkg/util/environment" | |
) | |
// ReadConfig reads config file for test. | |
func ReadConfig() { | |
config.ReadConfig(config.ReadConfigOption{ | |
AppEnv: environment.Test, | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment