You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
271 B
9 lines
271 B
/**
|
|
* Generic strings that could be used throughout the app.
|
|
*/
|
|
export enum AppString {
|
|
APP_NAME = "KickStart with Time",
|
|
VERSION = "0.1",
|
|
DEFAULT_ENDORSER_API_SERVER = "https://test.endorser.ch:8000",
|
|
//DEFAULT_ENDORSER_API_SERVER = "http://localhost:3000",
|
|
}
|
|
|