10 lines
272 B
TypeScript
10 lines
272 B
TypeScript
/**
|
|
* Generic strings that could be used throughout the app.
|
|
*/
|
|
export enum AppString {
|
|
APP_NAME = "Kickstart for time",
|
|
VERSION = "0.1",
|
|
DEFAULT_ENDORSER_API_SERVER = "https://test.endorser.ch:8000",
|
|
DEFAULT_ENDORSER_VIEW_SERVER = "https://test.endorser.ch",
|
|
}
|