11 lines
335 B
Go
11 lines
335 B
Go
package urls
|
|
|
|
const (
|
|
URL_MYSTC_API_BASE = "https://mystc.stc.com.sa"
|
|
PATH_API_AUTH_BASE = URL_MYSTC_API_BASE + "/api/mystc-api-authentication"
|
|
PATH_PHONES_LIST = PATH_API_AUTH_BASE + "/phones-list"
|
|
PATH_LOGIN = PATH_API_AUTH_BASE + "/login"
|
|
PATH_LOGIN_VERIFICATION = PATH_API_AUTH_BASE + "/login-verification"
|
|
)
|
|
|