15 lines
214 B
Go
15 lines
214 B
Go
package util
|
|
|
|
const (
|
|
testUserName = "test"
|
|
TestStockSymbol = "AA"
|
|
)
|
|
|
|
var (
|
|
testUserPassword = []byte("password5")
|
|
)
|
|
|
|
func GetTestUserCredentials() (string, []byte) {
|
|
return testUserName, testUserPassword
|
|
}
|