passo_mobile_app/lib/utils/urls.dart

18 lines
384 B
Dart
Raw Normal View History

class Url {
2023-01-17 07:52:31 +00:00
static final Url _instance = Url();
static Url get instance => _instance;
2023-01-17 07:52:31 +00:00
String host() {
// return '192.168.10.221:3003';
// return 'agusandelnorte.gov.ph';
return 'devweb.agusandelnorte.gov.ph';
2023-01-17 07:52:31 +00:00
}
String authentication() {
return '/api/account/auth/login/';
2023-01-17 07:52:31 +00:00
}
String profileInformation(){
return '/api/jobnet_app/profile/pds/';
}
2023-01-17 07:52:31 +00:00
}