26 lines
1.0 KiB
Dart
26 lines
1.0 KiB
Dart
class AppLink {
|
|
static const String server = 'https://ride.mobile-app.store/';
|
|
|
|
static const String test = "$server/test.php";
|
|
|
|
static const String pathImage = "$server/upload/types/";
|
|
static const String uploadImage = "$server/uploadImage.php";
|
|
static const String uploadImageType = "$server/uploadImageType.php";
|
|
|
|
//==================certifcate==========
|
|
static const String certifcate =
|
|
'https://portfolio.mobile-app.store/hamzaayed/certifications';
|
|
static const String getCertificate = "$certifcate/get.php";
|
|
static const String addCertificate = "$certifcate/add.php";
|
|
static const String deleteCertificate = "$certifcate/delete.php";
|
|
static const String updateCertificate = "$certifcate/update.php";
|
|
|
|
//==================Blog=============
|
|
static const String blog =
|
|
'https://portfolio.mobile-app.store/hamzaayed/blogs';
|
|
static const String getBlog = "$blog/get.php";
|
|
static const String addBlog = "$blog/add.php";
|
|
static const String deleteBlog = "$blog/delete.php";
|
|
static const String updateBlog = "$blog/update.php";
|
|
}
|