18 lines
384 B
Dart
18 lines
384 B
Dart
class Url {
|
|
static final Url _instance = Url();
|
|
static Url get instance => _instance;
|
|
|
|
String host() {
|
|
// return '192.168.10.221:3003';
|
|
return 'agusandelnorte.gov.ph';
|
|
// return 'devweb.agusandelnorte.gov.ph';
|
|
}
|
|
|
|
String authentication() {
|
|
return '/api/account/auth/login/';
|
|
}
|
|
|
|
String profileInformation(){
|
|
return '/api/jobnet_app/profile/pds/';
|
|
}
|
|
} |