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