vibeStonk/server/util/testDB.go
2025-06-12 16:57:42 -04:00

15 lines
214 B
Go

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